
pip install selenium
Requirement already satisfied: selenium in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (4.1.0)
Requirement already satisfied: trio~=0.17 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from selenium) (0.19.0)
Requirement already satisfied: urllib3[secure]~=1.26 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from selenium) (1.26.7)
Requirement already satisfied: trio-websocket~=0.9 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from selenium) (0.9.2)
Requirement already satisfied: sortedcontainers in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from trio~=0.17->selenium) (2.4.0)
Requirement already satisfied: outcome in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from trio~=0.17->selenium) (1.1.0)
Requirement already satisfied: attrs>=19.2.0 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from trio~=0.17->selenium) (19.3.0)
Requirement already satisfied: async-generator>=1.9 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from trio~=0.17->selenium) (1.10)
Requirement already satisfied: sniffio in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from trio~=0.17->selenium) (1.2.0)
Requirement already satisfied: idna in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from trio~=0.17->selenium) (2.8)
Requirement already satisfied: wsproto>=0.14 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from trio-websocket~=0.9->selenium) (1.0.0)
Requirement already satisfied: pyOpenSSL>=0.14 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from urllib3[secure]~=1.26->selenium) (21.0.0)
Requirement already satisfied: cryptography>=1.3.4 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from urllib3[secure]~=1.26->selenium) (36.0.1)
Requirement already satisfied: certifi in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from urllib3[secure]~=1.26->selenium) (2019.11.28)
Requirement already satisfied: cffi>=1.12 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from cryptography>=1.3.4->urllib3[secure]~=1.26->selenium) (1.15.0)
Requirement already satisfied: six>=1.5.2 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from pyOpenSSL>=0.14->urllib3[secure]~=1.26->selenium) (1.12.0)
Requirement already satisfied: h11<1,>=0.9.0 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from wsproto>=0.14->trio-websocket~=0.9->selenium) (0.12.0)
Requirement already satisfied: pycparser in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from cffi>=1.12->cryptography>=1.3.4->urllib3[secure]~=1.26->selenium) (2.21)
WARNING: You are using pip version 21.3.1; however, version 23.1.2 is available.
You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7 -m pip install --upgrade pip' command.
Note: you may need to restart the kernel to use updated packages.
pip install openpyxl
Requirement already satisfied: openpyxl in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (3.1.2)
Requirement already satisfied: et-xmlfile in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from openpyxl) (1.1.0)
WARNING: You are using pip version 21.3.1; however, version 23.1.2 is available.
You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7 -m pip install --upgrade pip' command.
Note: you may need to restart the kernel to use updated packages.
pip install plotly
Requirement already satisfied: plotly in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (4.2.1)
Requirement already satisfied: retrying>=1.3.3 in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from plotly) (1.3.3)
Requirement already satisfied: six in /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages (from plotly) (1.12.0)
WARNING: You are using pip version 21.3.1; however, version 23.1.2 is available.
You should consider upgrading via the '/Library/Frameworks/Python.framework/Versions/3.7/bin/python3.7 -m pip install --upgrade pip' command.
Note: you may need to restart the kernel to use updated packages.
# make the necessary imports
import time
import pandas as pd
import seaborn as sns
import matplotlib.pyplot as plt
from selenium import webdriver
from selenium.webdriver.common.by import By
from selenium.webdriver.common.keys import Keys
from selenium.webdriver.support.ui import WebDriverWait
from selenium.webdriver.support import expected_conditions as EC
from selenium.webdriver.chrome.service import Service as ChromeService
from webdriver_manager.chrome import ChromeDriverManager
from selenium.webdriver.chrome.options import Options
from selenium.webdriver.common.action_chains import ActionChains
from selenium.common.exceptions import StaleElementReferenceException, TimeoutException
from selenium.webdriver.support.expected_conditions import staleness_of
from selenium.common.exceptions import NoSuchElementException
from selenium.webdriver.support import expected_conditions
from IPython.display import display
import plotly.graph_objs as go
import plotly.express as px
import numpy as np
def get_match_statistics(driver, match_url):
"""
This function extracts match statistics from a given match URL using a Selenium WebDriver.
Args:
driver (selenium.webdriver.Chrome): The WebDriver instance to use for web scraping.
match_url (str): The URL of the match to get statistics from.
Returns:
dict: A dictionary containing the extracted match statistics.
"""
driver.get(match_url)
# Click on the Stats tab
stats_tab = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[contains(@href, "#/match-summary/match-statistics")]'))
)
# Scroll into view to make the stats tab visible
driver.execute_script("arguments[0].scrollIntoView();", stats_tab)
time.sleep(1)
driver.execute_script("arguments[0].click();", stats_tab)
# Get all statistics rows
stats_rows = driver.find_elements(By.XPATH, '//div[@class="stat__row"]')
match_data = {}
# Iterate through the rows and get statistics for both teams
for row in stats_rows:
stat_name = row.find_element(By.XPATH, './/div[@class="stat__categoryName"]').text
home_stat = row.find_element(By.XPATH, './/div[@class="stat__homeValue"]').text
away_stat = row.find_element(By.XPATH, './/div[@class="stat__awayValue"]').text
# Add the statistics to the match_data dictionary
match_data[f'{stat_name} (home)'] = home_stat
match_data[f'{stat_name} (away)'] = away_stat
return match_data
def get_past_premier_league_matches():
"""
This function extracts past Premier League match data for the 2021/2022 season using a Selenium WebDriver.
Returns:
dict: A dictionary containing match data for the 2021/2022 season.
"""
# Set up the Chrome WebDriver with options
chrome_options = Options()
chrome_options.add_experimental_option('excludeSwitches', ['enable-logging','enable-automation'])
chrome_options.add_experimental_option('useAutomationExtension', False)
driver = webdriver.Chrome(
service=ChromeService(ChromeDriverManager().install()), options=chrome_options)
# Navigate to the Flashscore homepage
driver.get("https://www.flashscore.com/")
# Click on the Premier League button
premier_league_button = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[contains(@href, "/football/england/premier-league/")]'))
)
premier_league_button.click()
# Click on the archive button
archive_button = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[@href="/football/england/premier-league/archive/"]'))
)
archive_button.click()
# Click on the 2021/2022 season
season = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[contains(text(), "Premier League 2021/2022") and contains(@class, "archive__text")]'))
)
driver.execute_script("arguments[0].scrollIntoView(true);", season)
time.sleep(1)
season.click()
time.sleep(2)
# Click on the Results tab
results_tab = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[@href="/football/england/premier-league-2021-2022/results/"]'))
)
results_tab.click()
time.sleep(2)
matches_data = {}
while True:
WebDriverWait(driver, 20).until(
EC.presence_of_all_elements_located((By.XPATH, '//div[contains(@class, "event__match event__match--static event__match--twoLine") or contains(@class, "event__match event__match--static event__match--last event__match--twoLine")]'))
)
time.sleep(3)
# Find all match elements
matches = driver.find_elements(By.XPATH, '//div[contains(@class, "event__match event__match--static event__match--twoLine") or contains(@class, "event__match event__match--static event__match--last event__match--twoLine")]')
season_matches = []
for match in matches:
# Extract match data
home_team = match.find_element(By.XPATH, './/div[contains(@class, "event__participant--home")]').text
away_team = match.find_element(By.XPATH, './/div[contains(@class, "event__participant--away")]').text
score_home = match.find_element(By.XPATH, './/div[@class="event__score event__score--home"]').text
score_away = match.find_element(By.XPATH, './/div[@class="event__score event__score--away"]').text
score = score_home + " - " + score_away
match_id = match.get_attribute("id").split("_")[-1]
# Add match data to the season_matches list
season_matches.append({
'home_team': home_team,
'away_team': away_team,
'home_score': score_home,
'away_score': score_away,
'match_id': match_id
})
# Add season_matches data to the matches_data dictionary
matches_data['2021/2022'] = matches_data.get('2021/2022', []) + season_matches
try:
# Click on the "Show more matches" button
show_more_button = WebDriverWait(driver, 10).until(
EC.visibility_of_element_located((By.XPATH, '//div[@class="container__livetable"]//a[@class="event__more event__more--static"]'))
)
driver.execute_script("arguments[0].scrollIntoView(true);", show_more_button)
time.sleep(3)
show_more_button.click()
time.sleep(3)
except:
# Exit the loop if the "Show more matches" button is not found
break
driver.quit()
return matches_data
def merge_match_data(matches_data):
"""
This function retrieves match statistics for each match in a given matches_data dictionary and updates the dictionary with the
match statistics.
Args:
matches_data (dict): A dictionary where each key represents a season and its corresponding value is a list of
matches played during that season.
Returns:
dict: A modified dictionary with the added match statistics for each match.
"""
# Configure Chrome driver options
chrome_options = Options()
chrome_options.add_experimental_option('excludeSwitches', ['enable-logging','enable-automation'])
chrome_options.add_experimental_option('useAutomationExtension', False)
# Initialize Chrome driver
driver = webdriver.Chrome(
service=ChromeService(ChromeDriverManager().install()), options=chrome_options)
# Loop through each season and match in the given matches_data dictionary
for season, matches in matches_data.items():
for i, match in enumerate(matches):
# Retrieve match statistics for the current match
match_url = f"https://www.flashscore.com/match/{match['match_id']}/#/match-summary/match-statistics"
match_stats = get_match_statistics(driver, match_url)
# Update the current match with the retrieved match statistics
matches_data[season][i].update(match_stats)
# Quit the Chrome driver
driver.quit()
# Return the modified matches_data dictionary
return matches_data
def add_missing_columns(match):
"""
This function adds missing columns to each match in the matches_data dictionary if they do not already exist.
Args:
matches_data: A dictionary containing match data for multiple seasons
Returns:
None (the function modifies the input dictionary in place)
"""
columns_to_add = ['Red Cards (home)', 'Red Cards (away)', 'Yellow Cards (home)', 'Yellow Cards (away)']
# Check if each column is present in the match dictionary, and add it with a value of 0 if it is not
for col in columns_to_add:
if col not in match:
match[col] = 0
def create_dataframe(match_data):
"""
This function converts match data from a nested dictionary structure to a pandas DataFrame.
Args:
match_data: A dictionary containing match data for multiple seasons.
Returns:
A pandas DataFrame containing the flattened match data.
"""
# Flatten the nested dictionary structure and store the data in a list
flattened_data = []
for season, matches in match_data.items():
for match in matches:
match["season"] = season
add_missing_columns(match)
flattened_data.append(match)
# Create a pandas DataFrame from the list
df = pd.DataFrame(flattened_data)
return df
matches_data = get_past_premier_league_matches()
matches_data_with_stats = merge_match_data(matches_data)
print(matches_data_with_stats)
====== WebDriver manager ====== Current google-chrome version is 114.0.5735 Get LATEST chromedriver version for 114.0.5735 google-chrome Driver [/Users/macbookpro/.wdm/drivers/chromedriver/mac64/114.0.5735.90/chromedriver] found in cache ====== WebDriver manager ====== Current google-chrome version is 114.0.5735 Get LATEST chromedriver version for 114.0.5735 google-chrome Driver [/Users/macbookpro/.wdm/drivers/chromedriver/mac64/114.0.5735.90/chromedriver] found in cache
{'2021/2022': [{'home_team': 'Arsenal', 'away_team': 'Everton', 'home_score': '5', 'away_score': '1', 'match_id': 'CWuae5l9', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '647', 'Total Passes (away)': '234', 'Completed Passes (home)': '583', 'Completed Passes (away)': '151', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '136', 'Attacks (away)': '55', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Brentford', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '2', 'match_id': 'QZq3fP3F', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '13', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '412', 'Total Passes (away)': '438', 'Completed Passes (home)': '318', 'Completed Passes (away)': '317', 'Tackles (home)': '12', 'Tackles (away)': '10', 'Attacks (home)': '105', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Brighton', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': '8bZ7gqJL', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '489', 'Total Passes (away)': '480', 'Completed Passes (home)': '399', 'Completed Passes (away)': '377', 'Tackles (home)': '12', 'Tackles (away)': '14', 'Attacks (home)': '100', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Burnley', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '2', 'match_id': 'nkYBh3YR', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '35', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '344', 'Total Passes (away)': '338', 'Completed Passes (home)': '238', 'Completed Passes (away)': '240', 'Tackles (home)': '11', 'Tackles (away)': '22', 'Attacks (home)': '116', 'Attacks (away)': '80', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Chelsea', 'away_team': 'Watford', 'home_score': '2', 'away_score': '1', 'match_id': 'IXKwlNtq', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Total Passes (home)': '734', 'Total Passes (away)': '281', 'Completed Passes (home)': '658', 'Completed Passes (away)': '202', 'Tackles (home)': '32', 'Tackles (away)': '25', 'Attacks (home)': '147', 'Attacks (away)': '63', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'dOJsmsdk', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '22', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '22', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '327', 'Total Passes (away)': '526', 'Completed Passes (home)': '233', 'Completed Passes (away)': '426', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '89', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '1', 'match_id': 'vm9nn1Be', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '448', 'Total Passes (away)': '425', 'Completed Passes (home)': '350', 'Completed Passes (away)': '326', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '83', 'Attacks (away)': '105', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Liverpool', 'away_team': 'Wolves', 'home_score': '3', 'away_score': '1', 'match_id': 'hjDjoLQ1', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '29', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '14', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '669', 'Total Passes (away)': '400', 'Completed Passes (home)': '590', 'Completed Passes (away)': '319', 'Tackles (home)': '21', 'Tackles (away)': '18', 'Attacks (home)': '132', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Manchester City', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '2', 'match_id': '6g1Y9432', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '30', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '601', 'Total Passes (away)': '243', 'Completed Passes (home)': '518', 'Completed Passes (away)': '163', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '151', 'Attacks (away)': '49', 'Dangerous Attacks (home)': '107', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '5', 'match_id': 'pp0x9OI8', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '13', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '402', 'Total Passes (away)': '614', 'Completed Passes (home)': '307', 'Completed Passes (away)': '537', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '78', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Aston Villa', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'UZOxr6ME', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '19', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '20', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '587', 'Total Passes (away)': '231', 'Completed Passes (home)': '529', 'Completed Passes (away)': '158', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '111', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '8tdRk9xq', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '750', 'Total Passes (away)': '370', 'Completed Passes (home)': '695', 'Completed Passes (away)': '293', 'Tackles (home)': '10', 'Tackles (away)': '18', 'Attacks (home)': '153', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '78', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Everton', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '2', 'match_id': 'YqNGxuLF', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '347', 'Total Passes (away)': '466', 'Completed Passes (home)': '244', 'Completed Passes (away)': '360', 'Tackles (home)': '25', 'Tackles (away)': '20', 'Attacks (home)': '116', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Southampton', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'SKD2jeop', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '8', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '300', 'Total Passes (away)': '734', 'Completed Passes (home)': '224', 'Completed Passes (away)': '654', 'Tackles (home)': '15', 'Tackles (away)': '18', 'Attacks (home)': '72', 'Attacks (away)': '170', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '78'}, {'home_team': 'Newcastle', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '0', 'match_id': 'IBoZ7NGH', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '6', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '325', 'Total Passes (away)': '332', 'Completed Passes (home)': '260', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '15', 'Attacks (home)': '79', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Everton', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '3', 'match_id': 'SMhMAPWb', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '11', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Red Cards (home)': '2', 'Red Cards (away)': '0', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '212', 'Total Passes (away)': '586', 'Completed Passes (home)': '143', 'Completed Passes (away)': '491', 'Tackles (home)': '5', 'Tackles (away)': '14', 'Attacks (home)': '76', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '81'}, {'home_team': 'Aston Villa', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'lWgIB5Hh', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '464', 'Total Passes (away)': '486', 'Completed Passes (home)': '377', 'Completed Passes (away)': '405', 'Tackles (home)': '20', 'Tackles (away)': '12', 'Attacks (home)': '95', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Leeds', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'ddcQ9qn5', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '394', 'Total Passes (away)': '403', 'Completed Passes (home)': '270', 'Completed Passes (away)': '296', 'Tackles (home)': '13', 'Tackles (away)': '13', 'Attacks (home)': '97', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Watford', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '5', 'match_id': '0YBAlZFd', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '351', 'Total Passes (away)': '526', 'Completed Passes (home)': '272', 'Completed Passes (away)': '447', 'Tackles (home)': '19', 'Tackles (away)': '26', 'Attacks (home)': '99', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '42'}, {'home_team': 'West Ham', 'away_team': 'Manchester City', 'home_score': '2', 'away_score': '2', 'match_id': 'vJsicRJd', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '31', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '13', 'Free Kicks (home)': '5', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '9', 'Fouls (away)': '5', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '189', 'Total Passes (away)': '696', 'Completed Passes (home)': '121', 'Completed Passes (away)': '605', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '45', 'Attacks (away)': '149', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '114'}, {'home_team': 'Wolves', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '1', 'match_id': 'I9tedoZ2', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '613', 'Total Passes (away)': '350', 'Completed Passes (home)': '513', 'Completed Passes (away)': '254', 'Tackles (home)': '8', 'Tackles (away)': '24', 'Attacks (home)': '148', 'Attacks (away)': '51', 'Dangerous Attacks (home)': '90', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Tottenham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '0', 'match_id': 'MsD6kF0j', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '647', 'Total Passes (away)': '299', 'Completed Passes (home)': '566', 'Completed Passes (away)': '221', 'Tackles (home)': '9', 'Tackles (away)': '17', 'Attacks (home)': '116', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Tottenham', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'ltwL0Wk8', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '7', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '5', 'Total Passes (home)': '561', 'Total Passes (away)': '412', 'Completed Passes (home)': '498', 'Completed Passes (away)': '346', 'Tackles (home)': '16', 'Tackles (away)': '6', 'Attacks (home)': '120', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Wolves', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '5', 'match_id': '8EwivhdK', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '9', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '2', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '383', 'Total Passes (away)': '787', 'Completed Passes (home)': '319', 'Completed Passes (away)': '721', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '49', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Leicester', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'OMqfxd7j', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Total Passes (home)': '639', 'Total Passes (away)': '354', 'Completed Passes (home)': '554', 'Completed Passes (away)': '278', 'Tackles (home)': '24', 'Tackles (away)': '19', 'Attacks (home)': '132', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Watford', 'away_team': 'Everton', 'home_score': '0', 'away_score': '0', 'match_id': 'CzGnGQ7o', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '13', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '12', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '470', 'Total Passes (away)': '488', 'Completed Passes (home)': '385', 'Completed Passes (away)': '384', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '84', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Leeds', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'QuopLCkr'}, {'home_team': 'Aston Villa', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'fgOCwL59', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '12', 'Total Passes (home)': '343', 'Total Passes (away)': '530', 'Completed Passes (home)': '258', 'Completed Passes (away)': '441', 'Tackles (home)': '12', 'Tackles (away)': '15', 'Attacks (home)': '77', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Manchester City', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '0', 'match_id': 'h409DRnt', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '14', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '12', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '712', 'Total Passes (away)': '281', 'Completed Passes (home)': '645', 'Completed Passes (away)': '216', 'Tackles (home)': '8', 'Tackles (away)': '19', 'Attacks (home)': '139', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Arsenal', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '1', 'match_id': '2a3raSXn', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '30', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '621', 'Total Passes (away)': '364', 'Completed Passes (home)': '556', 'Completed Passes (away)': '285', 'Tackles (home)': '16', 'Tackles (away)': '24', 'Attacks (home)': '152', 'Attacks (away)': '36', 'Dangerous Attacks (home)': '109', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Leicester', 'away_team': 'Everton', 'home_score': '1', 'away_score': '2', 'match_id': 'xhQagO1O', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '631', 'Total Passes (away)': '332', 'Completed Passes (home)': '545', 'Completed Passes (away)': '239', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '122', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Norwich', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '4', 'match_id': '674DCo2n', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '8', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '384', 'Total Passes (away)': '679', 'Completed Passes (home)': '328', 'Completed Passes (away)': '616', 'Tackles (home)': '12', 'Tackles (away)': '12', 'Attacks (home)': '87', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Liverpool', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '1', 'match_id': 'GrP3hrHU', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '13', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '4', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '618', 'Total Passes (away)': '338', 'Completed Passes (home)': '529', 'Completed Passes (away)': '249', 'Tackles (home)': '19', 'Tackles (away)': '20', 'Attacks (home)': '166', 'Attacks (away)': '48', 'Dangerous Attacks (home)': '99', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Brighton', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': 'OEiic62a', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '17', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '373', 'Total Passes (away)': '526', 'Completed Passes (home)': '293', 'Completed Passes (away)': '445', 'Tackles (home)': '11', 'Tackles (away)': '13', 'Attacks (home)': '90', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Brentford', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '0', 'match_id': 'tj2nbnmg', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '321', 'Total Passes (away)': '470', 'Completed Passes (home)': '219', 'Completed Passes (away)': '372', 'Tackles (home)': '10', 'Tackles (away)': '17', 'Attacks (home)': '86', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '71'}, {'home_team': 'Burnley', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '3', 'match_id': 'xIeedQH5', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '424', 'Total Passes (away)': '446', 'Completed Passes (home)': '328', 'Completed Passes (away)': '349', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '101', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Chelsea', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '2', 'match_id': 'WveaepXB', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '493', 'Total Passes (away)': '332', 'Completed Passes (home)': '399', 'Completed Passes (away)': '253', 'Tackles (home)': '20', 'Tackles (away)': '18', 'Attacks (home)': '109', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': 'AVg3f4nI', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '11', 'Fouls (away)': '18', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '533', 'Total Passes (away)': '248', 'Completed Passes (home)': '447', 'Completed Passes (away)': '170', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '112', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Manchester Utd', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '0', 'match_id': 'SnxDqmYa', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '714', 'Total Passes (away)': '376', 'Completed Passes (home)': '651', 'Completed Passes (away)': '309', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '113', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '59'}, {'home_team': 'West Ham', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '2', 'match_id': 'WGCC4lAP', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '586', 'Total Passes (away)': '454', 'Completed Passes (home)': '495', 'Completed Passes (away)': '372', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Everton', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '0', 'match_id': 'fZw5o93m', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '197', 'Total Passes (away)': '720', 'Completed Passes (home)': '114', 'Completed Passes (away)': '631', 'Tackles (home)': '13', 'Tackles (away)': '18', 'Attacks (home)': '62', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Tottenham', 'away_team': 'Leicester', 'home_score': '3', 'away_score': '1', 'match_id': 'IyVPtoII', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '404', 'Total Passes (away)': '627', 'Completed Passes (home)': '313', 'Completed Passes (away)': '540', 'Tackles (home)': '20', 'Tackles (away)': '16', 'Attacks (home)': '95', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leeds', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'ldw9pTIg', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '4', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '421', 'Total Passes (away)': '617', 'Completed Passes (home)': '329', 'Completed Passes (away)': '547', 'Tackles (home)': '29', 'Tackles (away)': '9', 'Attacks (home)': '63', 'Attacks (away)': '147', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Aston Villa', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'tWZ0nkls', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '32', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '398', 'Total Passes (away)': '491', 'Completed Passes (home)': '307', 'Completed Passes (away)': '378', 'Tackles (home)': '26', 'Tackles (away)': '12', 'Attacks (home)': '109', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Southampton', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '2', 'match_id': 'OEVLsR2C', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '16', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '326', 'Total Passes (away)': '529', 'Completed Passes (home)': '217', 'Completed Passes (away)': '424', 'Tackles (home)': '23', 'Tackles (away)': '8', 'Attacks (home)': '119', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Watford', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '2', 'match_id': 'UBYTu5XO', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '334', 'Total Passes (away)': '396', 'Completed Passes (home)': '213', 'Completed Passes (away)': '263', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Wolves', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '3', 'match_id': 'YPbv08It', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '4', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '4', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '458', 'Total Passes (away)': '479', 'Completed Passes (home)': '361', 'Completed Passes (away)': '382', 'Tackles (home)': '19', 'Tackles (away)': '22', 'Attacks (home)': '85', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Newcastle', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'pOWHr7m6', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '6', 'Offsides (home)': '9', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '274', 'Total Passes (away)': '528', 'Completed Passes (home)': '177', 'Completed Passes (away)': '434', 'Tackles (home)': '19', 'Tackles (away)': '15', 'Attacks (home)': '101', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester Utd', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'zmdU831B', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '16', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '345', 'Total Passes (away)': '628', 'Completed Passes (home)': '272', 'Completed Passes (away)': '556', 'Tackles (home)': '16', 'Tackles (away)': '12', 'Attacks (home)': '57', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '76'}, {'home_team': 'Crystal Palace', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '0', 'match_id': '8xMwVmJ6', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '31', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '432', 'Total Passes (away)': '392', 'Completed Passes (home)': '324', 'Completed Passes (away)': '266', 'Tackles (home)': '13', 'Tackles (away)': '29', 'Attacks (home)': '124', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Liverpool', 'away_team': 'Everton', 'home_score': '2', 'away_score': '0', 'match_id': 'UiAnTRmJ', 'Ball Possession (home)': '83%', 'Ball Possession (away)': '17%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '787', 'Total Passes (away)': '173', 'Completed Passes (home)': '700', 'Completed Passes (away)': '95', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '170', 'Attacks (away)': '53', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Brighton', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '2', 'match_id': 'MLJRXkZm', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '21', 'Throw-ins (away)': '33', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '352', 'Total Passes (away)': '366', 'Completed Passes (home)': '229', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '102', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Burnley', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '0CIVW9lf', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '324', 'Total Passes (away)': '590', 'Completed Passes (home)': '240', 'Completed Passes (away)': '488', 'Tackles (home)': '20', 'Tackles (away)': '28', 'Attacks (home)': '88', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Chelsea', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'fZHZVT30', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '12', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '710', 'Total Passes (away)': '354', 'Completed Passes (home)': '604', 'Completed Passes (away)': '253', 'Tackles (home)': '11', 'Tackles (away)': '14', 'Attacks (home)': '145', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '92', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '0', 'match_id': '4pPMYVJs', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '393', 'Total Passes (away)': '508', 'Completed Passes (home)': '297', 'Completed Passes (away)': '431', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '94', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Leicester', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '0', 'match_id': 'j1BrU7YC', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '16', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '520', 'Total Passes (away)': '289', 'Completed Passes (home)': '441', 'Completed Passes (away)': '196', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Manchester City', 'away_team': 'Watford', 'home_score': '5', 'away_score': '1', 'match_id': 'dbbUiBQJ', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '701', 'Total Passes (away)': '247', 'Completed Passes (home)': '615', 'Completed Passes (away)': '178', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '125', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Norwich', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '3', 'match_id': 'zkcYjVuQ', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '26', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '417', 'Total Passes (away)': '506', 'Completed Passes (home)': '313', 'Completed Passes (away)': '421', 'Tackles (home)': '20', 'Tackles (away)': '15', 'Attacks (home)': '102', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Arsenal', 'away_team': 'Manchester Utd', 'home_score': '3', 'away_score': '1', 'match_id': '2ywewCBQ', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '507', 'Total Passes (away)': '412', 'Completed Passes (home)': '430', 'Completed Passes (away)': '337', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '121', 'Attacks (away)': '64', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Burnley', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '0', 'match_id': 'CzfH0o8b', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '10', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '354', 'Total Passes (away)': '479', 'Completed Passes (home)': '244', 'Completed Passes (away)': '385', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '89', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Manchester City', 'away_team': 'Brighton', 'home_score': '3', 'away_score': '0', 'match_id': '0dnUcqhH', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '667', 'Total Passes (away)': '353', 'Completed Passes (home)': '586', 'Completed Passes (away)': '260', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '125', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '4', 'match_id': 'bXkrVY0G', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '704', 'Total Passes (away)': '332', 'Completed Passes (home)': '588', 'Completed Passes (away)': '249', 'Tackles (home)': '23', 'Tackles (away)': '20', 'Attacks (home)': '122', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Everton', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '0MoAPc6m', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '18', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '353', 'Total Passes (away)': '631', 'Completed Passes (home)': '254', 'Completed Passes (away)': '511', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '114', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Newcastle', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': 'vmoYd37N', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '347', 'Total Passes (away)': '589', 'Completed Passes (home)': '261', 'Completed Passes (away)': '490', 'Tackles (home)': '18', 'Tackles (away)': '20', 'Attacks (home)': '96', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Liverpool', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': '6ZnQbPxB', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '3', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '897', 'Total Passes (away)': '354', 'Completed Passes (home)': '799', 'Completed Passes (away)': '258', 'Tackles (home)': '15', 'Tackles (away)': '22', 'Attacks (home)': '167', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Newcastle', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'M7vgJjKf', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '264', 'Total Passes (away)': '584', 'Completed Passes (home)': '166', 'Completed Passes (away)': '485', 'Tackles (home)': '26', 'Tackles (away)': '22', 'Attacks (home)': '102', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '55'}, {'home_team': 'West Ham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'ATKmuYtE', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '9', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '506', 'Total Passes (away)': '325', 'Completed Passes (home)': '416', 'Completed Passes (away)': '219', 'Tackles (home)': '6', 'Tackles (away)': '11', 'Attacks (home)': '96', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Manchester Utd', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '2', 'match_id': 'vqklKW4l', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '6', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Total Passes (home)': '623', 'Total Passes (away)': '386', 'Completed Passes (home)': '542', 'Completed Passes (away)': '302', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '120', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '82', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Southampton', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '0', 'match_id': '0bwcIAZ0', 'Ball Possession (home)': '24%', 'Ball Possession (away)': '76%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '12', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '213', 'Total Passes (away)': '655', 'Completed Passes (home)': '125', 'Completed Passes (away)': '580', 'Tackles (home)': '14', 'Tackles (away)': '12', 'Attacks (home)': '65', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '105'}, {'home_team': 'Watford', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '2', 'match_id': '8Ot5Gl4D', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '24', 'Throw-ins (away)': '36', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '396', 'Total Passes (away)': '382', 'Completed Passes (home)': '298', 'Completed Passes (away)': '282', 'Tackles (home)': '13', 'Tackles (away)': '22', 'Attacks (home)': '100', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '1', 'match_id': 'UXs1HUl7', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '14', 'Fouls (away)': '10', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '480', 'Total Passes (away)': '499', 'Completed Passes (home)': '391', 'Completed Passes (away)': '419', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '79', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Manchester City', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'QLQKIJTq', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '1', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '566', 'Total Passes (away)': '468', 'Completed Passes (home)': '477', 'Completed Passes (away)': '371', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '100', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Brentford', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '0', 'match_id': 'GnyoPLjG', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '3', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '2', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '477', 'Total Passes (away)': '540', 'Completed Passes (home)': '395', 'Completed Passes (away)': '455', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '81', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leicester', 'away_team': 'Crystal Palace', 'home_score': '2', 'away_score': '1', 'match_id': 'OCvgNaLS', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '511', 'Total Passes (away)': '495', 'Completed Passes (home)': '419', 'Completed Passes (away)': '413', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '113', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Norwich', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': 'MmKTGcbd', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '352', 'Total Passes (away)': '412', 'Completed Passes (home)': '224', 'Completed Passes (away)': '283', 'Tackles (home)': '10', 'Tackles (away)': '23', 'Attacks (home)': '94', 'Attacks (away)': '130', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Aston Villa', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '4', 'match_id': 'YNotQ1yA', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '477', 'Total Passes (away)': '461', 'Completed Passes (home)': '415', 'Completed Passes (away)': '402', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '111', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '17'}, {'home_team': 'Arsenal', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '2', 'match_id': 'MmrxRsM3', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '18', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '19', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '512', 'Total Passes (away)': '283', 'Completed Passes (home)': '427', 'Completed Passes (away)': '200', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '121', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Southampton', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '6', 'match_id': 'zi8Busyc', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '14', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '292', 'Total Passes (away)': '748', 'Completed Passes (home)': '215', 'Completed Passes (away)': '659', 'Tackles (home)': '18', 'Tackles (away)': '29', 'Attacks (home)': '80', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Watford', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '3', 'match_id': 'Es7Fv1j3', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '40', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '380', 'Total Passes (away)': '412', 'Completed Passes (home)': '250', 'Completed Passes (away)': '263', 'Tackles (home)': '21', 'Tackles (away)': '46', 'Attacks (home)': '160', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Everton', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'fwzkOu6M', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '307', 'Total Passes (away)': '641', 'Completed Passes (home)': '202', 'Completed Passes (away)': '520', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '110', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '95'}, {'home_team': 'Newcastle', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '8pGPHwqj', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '378', 'Total Passes (away)': '546', 'Completed Passes (home)': '308', 'Completed Passes (away)': '453', 'Tackles (home)': '11', 'Tackles (away)': '24', 'Attacks (home)': '89', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Burnley', 'away_team': 'Everton', 'home_score': '3', 'away_score': '2', 'match_id': 'pYadye5a', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '16', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '36', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '16', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '337', 'Total Passes (away)': '325', 'Completed Passes (home)': '216', 'Completed Passes (away)': '206', 'Tackles (home)': '11', 'Tackles (away)': '19', 'Attacks (home)': '94', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Crystal Palace', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'KKL6B2MG', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '293', 'Total Passes (away)': '647', 'Completed Passes (home)': '208', 'Completed Passes (away)': '551', 'Tackles (home)': '18', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '132', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Tottenham', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '1', 'match_id': 'CI0o4KEj', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '10', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '10', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '604', 'Total Passes (away)': '379', 'Completed Passes (home)': '545', 'Completed Passes (away)': '308', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '91', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '46'}, {'home_team': 'West Ham', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'lzpUS3ii', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '529', 'Total Passes (away)': '407', 'Completed Passes (home)': '432', 'Completed Passes (away)': '330', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '89', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Manchester Utd', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': 'YR1s50ap', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '582', 'Total Passes (away)': '495', 'Completed Passes (home)': '501', 'Completed Passes (away)': '415', 'Tackles (home)': '10', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '0', 'match_id': '829eE4xb', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '31', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '18', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '30', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '478', 'Total Passes (away)': '288', 'Completed Passes (home)': '389', 'Completed Passes (away)': '189', 'Tackles (home)': '14', 'Tackles (away)': '17', 'Attacks (home)': '139', 'Attacks (away)': '59', 'Dangerous Attacks (home)': '91', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Burnley', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '2', 'match_id': 'ng8aDOi4', 'Ball Possession (home)': '23%', 'Ball Possession (away)': '77%', 'Goal Attempts (home)': '3', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '8', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '235', 'Total Passes (away)': '778', 'Completed Passes (home)': '157', 'Completed Passes (away)': '686', 'Tackles (home)': '11', 'Tackles (away)': '7', 'Attacks (home)': '70', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '16', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Chelsea', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '4', 'match_id': 'tUM2Cr7A', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Total Passes (home)': '641', 'Total Passes (away)': '260', 'Completed Passes (home)': '578', 'Completed Passes (away)': '188', 'Tackles (home)': '9', 'Tackles (away)': '19', 'Attacks (home)': '125', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Leeds', 'away_team': 'Southampton', 'home_score': '1', 'away_score': '1', 'match_id': '2qBBAMyN', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '14', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '470', 'Total Passes (away)': '360', 'Completed Passes (home)': '336', 'Completed Passes (away)': '235', 'Tackles (home)': '19', 'Tackles (away)': '9', 'Attacks (home)': '112', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Wolves', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'SQrYRN6c', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '421', 'Total Passes (away)': '441', 'Completed Passes (home)': '335', 'Completed Passes (away)': '367', 'Tackles (home)': '23', 'Tackles (away)': '17', 'Attacks (home)': '65', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Liverpool', 'away_team': 'Watford', 'home_score': '2', 'away_score': '0', 'match_id': 'GnFF9tiT', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '716', 'Total Passes (away)': '263', 'Completed Passes (home)': '598', 'Completed Passes (away)': '163', 'Tackles (home)': '23', 'Tackles (away)': '23', 'Attacks (home)': '169', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Tottenham', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': 'bXR4isVp', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '604', 'Total Passes (away)': '544', 'Completed Passes (home)': '546', 'Completed Passes (away)': '483', 'Tackles (home)': '13', 'Tackles (away)': '6', 'Attacks (home)': '106', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Leicester', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '1', 'match_id': 'faqMa5N4', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '12', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '514', 'Total Passes (away)': '452', 'Completed Passes (home)': '436', 'Completed Passes (away)': '366', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '101', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Aston Villa', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': 'YqeD1Rhh', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '441', 'Total Passes (away)': '521', 'Completed Passes (home)': '362', 'Completed Passes (away)': '445', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '74', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '3', 'match_id': 'QwKjFpNi', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '17', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '414', 'Total Passes (away)': '448', 'Completed Passes (home)': '326', 'Completed Passes (away)': '348', 'Tackles (home)': '15', 'Tackles (away)': '26', 'Attacks (home)': '91', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'foImVv0N', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '276', 'Total Passes (away)': '447', 'Completed Passes (home)': '183', 'Completed Passes (away)': '343', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '107', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Arsenal', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'b76idBaF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '6', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '505', 'Total Passes (away)': '528', 'Completed Passes (home)': '407', 'Completed Passes (away)': '434', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '96', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '2', 'match_id': 'Ua8TGTNF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '496', 'Total Passes (away)': '551', 'Completed Passes (home)': '424', 'Completed Passes (away)': '481', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '126', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '0', 'match_id': 'EuOno68B', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '14', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '269', 'Total Passes (away)': '765', 'Completed Passes (home)': '174', 'Completed Passes (away)': '662', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '58', 'Attacks (away)': '175', 'Dangerous Attacks (home)': '22', 'Dangerous Attacks (away)': '88'}, {'home_team': 'Arsenal', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '0', 'match_id': 'nD4wkl9n', 'Ball Possession (home)': '46%', 'Ball Possession (away)': '54%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '481', 'Total Passes (away)': '564', 'Completed Passes (home)': '414', 'Completed Passes (away)': '494', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '104', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Chelsea', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'YT6knng5', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '22', 'Free Kicks (away)': '21', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '6', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '17', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '570', 'Total Passes (away)': '209', 'Completed Passes (home)': '491', 'Completed Passes (away)': '130', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '103', 'Attacks (away)': '75', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Everton', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': 'hWMjpQNH', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '356', 'Total Passes (away)': '597', 'Completed Passes (home)': '276', 'Completed Passes (away)': '518', 'Tackles (home)': '22', 'Tackles (away)': '12', 'Attacks (home)': '78', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leeds', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '1', 'match_id': 'ngMfqpwO', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '18', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '421', 'Total Passes (away)': '382', 'Completed Passes (home)': '315', 'Completed Passes (away)': '278', 'Tackles (home)': '28', 'Tackles (away)': '12', 'Attacks (home)': '100', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Southampton', 'away_team': 'Watford', 'home_score': '1', 'away_score': '2', 'match_id': 'QJi53mOu', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '498', 'Total Passes (away)': '306', 'Completed Passes (home)': '386', 'Completed Passes (away)': '203', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '108', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '34'}, {'home_team': 'West Ham', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': '4Aj927wn', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '3', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '443', 'Total Passes (away)': '501', 'Completed Passes (home)': '365', 'Completed Passes (away)': '423', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '108', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Manchester Utd', 'away_team': 'Tottenham', 'home_score': '3', 'away_score': '2', 'match_id': '0dQbr4hU', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '459', 'Total Passes (away)': '584', 'Completed Passes (home)': '391', 'Completed Passes (away)': '519', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '89', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Brentford', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': '0G8sl8Oh', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '4', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '10', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '475', 'Total Passes (away)': '373', 'Completed Passes (home)': '325', 'Completed Passes (away)': '238', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '105', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Brighton', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'fw8omSwa', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '15', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '430', 'Total Passes (away)': '401', 'Completed Passes (home)': '336', 'Completed Passes (away)': '313', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '91', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Arsenal', 'away_team': 'Everton', 'home_score': '5', 'away_score': '1', 'match_id': 'CWuae5l9', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '647', 'Total Passes (away)': '234', 'Completed Passes (home)': '583', 'Completed Passes (away)': '151', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '136', 'Attacks (away)': '55', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Brentford', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '2', 'match_id': 'QZq3fP3F', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '13', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '412', 'Total Passes (away)': '438', 'Completed Passes (home)': '318', 'Completed Passes (away)': '317', 'Tackles (home)': '12', 'Tackles (away)': '10', 'Attacks (home)': '105', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Brighton', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': '8bZ7gqJL', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '489', 'Total Passes (away)': '480', 'Completed Passes (home)': '399', 'Completed Passes (away)': '377', 'Tackles (home)': '12', 'Tackles (away)': '14', 'Attacks (home)': '100', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Burnley', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '2', 'match_id': 'nkYBh3YR', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '35', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '344', 'Total Passes (away)': '338', 'Completed Passes (home)': '238', 'Completed Passes (away)': '240', 'Tackles (home)': '11', 'Tackles (away)': '22', 'Attacks (home)': '116', 'Attacks (away)': '80', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Chelsea', 'away_team': 'Watford', 'home_score': '2', 'away_score': '1', 'match_id': 'IXKwlNtq', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Total Passes (home)': '734', 'Total Passes (away)': '281', 'Completed Passes (home)': '658', 'Completed Passes (away)': '202', 'Tackles (home)': '32', 'Tackles (away)': '25', 'Attacks (home)': '147', 'Attacks (away)': '63', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'dOJsmsdk', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '22', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '22', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '327', 'Total Passes (away)': '526', 'Completed Passes (home)': '233', 'Completed Passes (away)': '426', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '89', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '1', 'match_id': 'vm9nn1Be', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '448', 'Total Passes (away)': '425', 'Completed Passes (home)': '350', 'Completed Passes (away)': '326', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '83', 'Attacks (away)': '105', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Liverpool', 'away_team': 'Wolves', 'home_score': '3', 'away_score': '1', 'match_id': 'hjDjoLQ1', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '29', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '14', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '669', 'Total Passes (away)': '400', 'Completed Passes (home)': '590', 'Completed Passes (away)': '319', 'Tackles (home)': '21', 'Tackles (away)': '18', 'Attacks (home)': '132', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Manchester City', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '2', 'match_id': '6g1Y9432', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '30', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '601', 'Total Passes (away)': '243', 'Completed Passes (home)': '518', 'Completed Passes (away)': '163', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '151', 'Attacks (away)': '49', 'Dangerous Attacks (home)': '107', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '5', 'match_id': 'pp0x9OI8', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '13', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '402', 'Total Passes (away)': '614', 'Completed Passes (home)': '307', 'Completed Passes (away)': '537', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '78', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Aston Villa', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'UZOxr6ME', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '19', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '20', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '587', 'Total Passes (away)': '231', 'Completed Passes (home)': '529', 'Completed Passes (away)': '158', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '111', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '8tdRk9xq', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '750', 'Total Passes (away)': '370', 'Completed Passes (home)': '695', 'Completed Passes (away)': '293', 'Tackles (home)': '10', 'Tackles (away)': '18', 'Attacks (home)': '153', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '78', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Everton', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '2', 'match_id': 'YqNGxuLF', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '347', 'Total Passes (away)': '466', 'Completed Passes (home)': '244', 'Completed Passes (away)': '360', 'Tackles (home)': '25', 'Tackles (away)': '20', 'Attacks (home)': '116', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Southampton', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'SKD2jeop', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '8', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '300', 'Total Passes (away)': '734', 'Completed Passes (home)': '224', 'Completed Passes (away)': '654', 'Tackles (home)': '15', 'Tackles (away)': '18', 'Attacks (home)': '72', 'Attacks (away)': '170', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '78'}, {'home_team': 'Newcastle', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '0', 'match_id': 'IBoZ7NGH', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '6', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '325', 'Total Passes (away)': '332', 'Completed Passes (home)': '260', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '15', 'Attacks (home)': '79', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Everton', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '3', 'match_id': 'SMhMAPWb', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '11', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Red Cards (home)': '2', 'Red Cards (away)': '0', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '212', 'Total Passes (away)': '586', 'Completed Passes (home)': '143', 'Completed Passes (away)': '491', 'Tackles (home)': '5', 'Tackles (away)': '14', 'Attacks (home)': '76', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '81'}, {'home_team': 'Aston Villa', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'lWgIB5Hh', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '464', 'Total Passes (away)': '486', 'Completed Passes (home)': '377', 'Completed Passes (away)': '405', 'Tackles (home)': '20', 'Tackles (away)': '12', 'Attacks (home)': '95', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Leeds', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'ddcQ9qn5', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '394', 'Total Passes (away)': '403', 'Completed Passes (home)': '270', 'Completed Passes (away)': '296', 'Tackles (home)': '13', 'Tackles (away)': '13', 'Attacks (home)': '97', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Watford', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '5', 'match_id': '0YBAlZFd', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '351', 'Total Passes (away)': '526', 'Completed Passes (home)': '272', 'Completed Passes (away)': '447', 'Tackles (home)': '19', 'Tackles (away)': '26', 'Attacks (home)': '99', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '42'}, {'home_team': 'West Ham', 'away_team': 'Manchester City', 'home_score': '2', 'away_score': '2', 'match_id': 'vJsicRJd', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '31', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '13', 'Free Kicks (home)': '5', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '9', 'Fouls (away)': '5', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '189', 'Total Passes (away)': '696', 'Completed Passes (home)': '121', 'Completed Passes (away)': '605', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '45', 'Attacks (away)': '149', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '114'}, {'home_team': 'Wolves', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '1', 'match_id': 'I9tedoZ2', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '613', 'Total Passes (away)': '350', 'Completed Passes (home)': '513', 'Completed Passes (away)': '254', 'Tackles (home)': '8', 'Tackles (away)': '24', 'Attacks (home)': '148', 'Attacks (away)': '51', 'Dangerous Attacks (home)': '90', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Tottenham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '0', 'match_id': 'MsD6kF0j', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '647', 'Total Passes (away)': '299', 'Completed Passes (home)': '566', 'Completed Passes (away)': '221', 'Tackles (home)': '9', 'Tackles (away)': '17', 'Attacks (home)': '116', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Tottenham', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'ltwL0Wk8', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '7', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '5', 'Total Passes (home)': '561', 'Total Passes (away)': '412', 'Completed Passes (home)': '498', 'Completed Passes (away)': '346', 'Tackles (home)': '16', 'Tackles (away)': '6', 'Attacks (home)': '120', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Wolves', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '5', 'match_id': '8EwivhdK', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '9', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '2', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '383', 'Total Passes (away)': '787', 'Completed Passes (home)': '319', 'Completed Passes (away)': '721', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '49', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Leicester', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'OMqfxd7j', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Total Passes (home)': '639', 'Total Passes (away)': '354', 'Completed Passes (home)': '554', 'Completed Passes (away)': '278', 'Tackles (home)': '24', 'Tackles (away)': '19', 'Attacks (home)': '132', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Watford', 'away_team': 'Everton', 'home_score': '0', 'away_score': '0', 'match_id': 'CzGnGQ7o', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '13', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '12', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '470', 'Total Passes (away)': '488', 'Completed Passes (home)': '385', 'Completed Passes (away)': '384', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '84', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Leeds', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'QuopLCkr', 'Ball Possession (home)': '32%', 'Ball Possession (away)': '68%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '17', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '10', 'Fouls (away)': '14', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '379', 'Total Passes (away)': '817', 'Completed Passes (home)': '290', 'Completed Passes (away)': '730', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '73', 'Attacks (away)': '159', 'Dangerous Attacks (home)': '19', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Aston Villa', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'fgOCwL59', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '12', 'Total Passes (home)': '343', 'Total Passes (away)': '530', 'Completed Passes (home)': '258', 'Completed Passes (away)': '441', 'Tackles (home)': '12', 'Tackles (away)': '15', 'Attacks (home)': '77', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Manchester City', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '0', 'match_id': 'h409DRnt', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '14', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '12', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '712', 'Total Passes (away)': '281', 'Completed Passes (home)': '645', 'Completed Passes (away)': '216', 'Tackles (home)': '8', 'Tackles (away)': '19', 'Attacks (home)': '139', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Arsenal', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '1', 'match_id': '2a3raSXn', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '30', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '621', 'Total Passes (away)': '364', 'Completed Passes (home)': '556', 'Completed Passes (away)': '285', 'Tackles (home)': '16', 'Tackles (away)': '24', 'Attacks (home)': '152', 'Attacks (away)': '36', 'Dangerous Attacks (home)': '109', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Leicester', 'away_team': 'Everton', 'home_score': '1', 'away_score': '2', 'match_id': 'xhQagO1O', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '631', 'Total Passes (away)': '332', 'Completed Passes (home)': '545', 'Completed Passes (away)': '239', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '122', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Norwich', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '4', 'match_id': '674DCo2n', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '8', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '384', 'Total Passes (away)': '679', 'Completed Passes (home)': '328', 'Completed Passes (away)': '616', 'Tackles (home)': '12', 'Tackles (away)': '12', 'Attacks (home)': '87', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Liverpool', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '1', 'match_id': 'GrP3hrHU', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '13', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '4', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '618', 'Total Passes (away)': '338', 'Completed Passes (home)': '529', 'Completed Passes (away)': '249', 'Tackles (home)': '19', 'Tackles (away)': '20', 'Attacks (home)': '166', 'Attacks (away)': '48', 'Dangerous Attacks (home)': '99', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Brighton', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': 'OEiic62a', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '17', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '373', 'Total Passes (away)': '526', 'Completed Passes (home)': '293', 'Completed Passes (away)': '445', 'Tackles (home)': '11', 'Tackles (away)': '13', 'Attacks (home)': '90', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Brentford', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '0', 'match_id': 'tj2nbnmg', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '321', 'Total Passes (away)': '470', 'Completed Passes (home)': '219', 'Completed Passes (away)': '372', 'Tackles (home)': '10', 'Tackles (away)': '17', 'Attacks (home)': '86', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '71'}, {'home_team': 'Burnley', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '3', 'match_id': 'xIeedQH5', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '424', 'Total Passes (away)': '446', 'Completed Passes (home)': '328', 'Completed Passes (away)': '349', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '101', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Chelsea', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '2', 'match_id': 'WveaepXB', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '493', 'Total Passes (away)': '332', 'Completed Passes (home)': '399', 'Completed Passes (away)': '253', 'Tackles (home)': '20', 'Tackles (away)': '18', 'Attacks (home)': '109', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': 'AVg3f4nI', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '11', 'Fouls (away)': '18', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '533', 'Total Passes (away)': '248', 'Completed Passes (home)': '447', 'Completed Passes (away)': '170', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '112', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Manchester Utd', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '0', 'match_id': 'SnxDqmYa', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '714', 'Total Passes (away)': '376', 'Completed Passes (home)': '651', 'Completed Passes (away)': '309', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '113', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '59'}, {'home_team': 'West Ham', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '2', 'match_id': 'WGCC4lAP', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '586', 'Total Passes (away)': '454', 'Completed Passes (home)': '495', 'Completed Passes (away)': '372', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Everton', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '0', 'match_id': 'fZw5o93m', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '197', 'Total Passes (away)': '720', 'Completed Passes (home)': '114', 'Completed Passes (away)': '631', 'Tackles (home)': '13', 'Tackles (away)': '18', 'Attacks (home)': '62', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Tottenham', 'away_team': 'Leicester', 'home_score': '3', 'away_score': '1', 'match_id': 'IyVPtoII', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '404', 'Total Passes (away)': '627', 'Completed Passes (home)': '313', 'Completed Passes (away)': '540', 'Tackles (home)': '20', 'Tackles (away)': '16', 'Attacks (home)': '95', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leeds', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'ldw9pTIg', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '4', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '421', 'Total Passes (away)': '617', 'Completed Passes (home)': '329', 'Completed Passes (away)': '547', 'Tackles (home)': '29', 'Tackles (away)': '9', 'Attacks (home)': '63', 'Attacks (away)': '147', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Aston Villa', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'tWZ0nkls', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '32', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '398', 'Total Passes (away)': '491', 'Completed Passes (home)': '307', 'Completed Passes (away)': '378', 'Tackles (home)': '26', 'Tackles (away)': '12', 'Attacks (home)': '109', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Southampton', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '2', 'match_id': 'OEVLsR2C', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '16', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '326', 'Total Passes (away)': '529', 'Completed Passes (home)': '217', 'Completed Passes (away)': '424', 'Tackles (home)': '23', 'Tackles (away)': '8', 'Attacks (home)': '119', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Watford', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '2', 'match_id': 'UBYTu5XO', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '334', 'Total Passes (away)': '396', 'Completed Passes (home)': '213', 'Completed Passes (away)': '263', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Wolves', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '3', 'match_id': 'YPbv08It', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '4', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '4', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '458', 'Total Passes (away)': '479', 'Completed Passes (home)': '361', 'Completed Passes (away)': '382', 'Tackles (home)': '19', 'Tackles (away)': '22', 'Attacks (home)': '85', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Newcastle', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'pOWHr7m6', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '6', 'Offsides (home)': '9', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '274', 'Total Passes (away)': '528', 'Completed Passes (home)': '177', 'Completed Passes (away)': '434', 'Tackles (home)': '19', 'Tackles (away)': '15', 'Attacks (home)': '101', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester Utd', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'zmdU831B', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '16', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '345', 'Total Passes (away)': '628', 'Completed Passes (home)': '272', 'Completed Passes (away)': '556', 'Tackles (home)': '16', 'Tackles (away)': '12', 'Attacks (home)': '57', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '76'}, {'home_team': 'Crystal Palace', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '0', 'match_id': '8xMwVmJ6', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '31', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '432', 'Total Passes (away)': '392', 'Completed Passes (home)': '324', 'Completed Passes (away)': '266', 'Tackles (home)': '13', 'Tackles (away)': '29', 'Attacks (home)': '124', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Liverpool', 'away_team': 'Everton', 'home_score': '2', 'away_score': '0', 'match_id': 'UiAnTRmJ', 'Ball Possession (home)': '83%', 'Ball Possession (away)': '17%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '787', 'Total Passes (away)': '173', 'Completed Passes (home)': '700', 'Completed Passes (away)': '95', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '170', 'Attacks (away)': '53', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Brighton', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '2', 'match_id': 'MLJRXkZm', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '21', 'Throw-ins (away)': '33', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '352', 'Total Passes (away)': '366', 'Completed Passes (home)': '229', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '102', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Burnley', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '0CIVW9lf', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '324', 'Total Passes (away)': '590', 'Completed Passes (home)': '240', 'Completed Passes (away)': '488', 'Tackles (home)': '20', 'Tackles (away)': '28', 'Attacks (home)': '88', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Chelsea', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'fZHZVT30', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '12', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '710', 'Total Passes (away)': '354', 'Completed Passes (home)': '604', 'Completed Passes (away)': '253', 'Tackles (home)': '11', 'Tackles (away)': '14', 'Attacks (home)': '145', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '92', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '0', 'match_id': '4pPMYVJs', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '393', 'Total Passes (away)': '508', 'Completed Passes (home)': '297', 'Completed Passes (away)': '431', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '94', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Leicester', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '0', 'match_id': 'j1BrU7YC', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '16', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '520', 'Total Passes (away)': '289', 'Completed Passes (home)': '441', 'Completed Passes (away)': '196', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Manchester City', 'away_team': 'Watford', 'home_score': '5', 'away_score': '1', 'match_id': 'dbbUiBQJ', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '701', 'Total Passes (away)': '247', 'Completed Passes (home)': '615', 'Completed Passes (away)': '178', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '125', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Norwich', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '3', 'match_id': 'zkcYjVuQ', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '26', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '417', 'Total Passes (away)': '506', 'Completed Passes (home)': '313', 'Completed Passes (away)': '421', 'Tackles (home)': '20', 'Tackles (away)': '15', 'Attacks (home)': '102', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Arsenal', 'away_team': 'Manchester Utd', 'home_score': '3', 'away_score': '1', 'match_id': '2ywewCBQ', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '507', 'Total Passes (away)': '412', 'Completed Passes (home)': '430', 'Completed Passes (away)': '337', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '121', 'Attacks (away)': '64', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Burnley', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '0', 'match_id': 'CzfH0o8b', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '10', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '354', 'Total Passes (away)': '479', 'Completed Passes (home)': '244', 'Completed Passes (away)': '385', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '89', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Manchester City', 'away_team': 'Brighton', 'home_score': '3', 'away_score': '0', 'match_id': '0dnUcqhH', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '667', 'Total Passes (away)': '353', 'Completed Passes (home)': '586', 'Completed Passes (away)': '260', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '125', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '4', 'match_id': 'bXkrVY0G', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '704', 'Total Passes (away)': '332', 'Completed Passes (home)': '588', 'Completed Passes (away)': '249', 'Tackles (home)': '23', 'Tackles (away)': '20', 'Attacks (home)': '122', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Everton', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '0MoAPc6m', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '18', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '353', 'Total Passes (away)': '631', 'Completed Passes (home)': '254', 'Completed Passes (away)': '511', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '114', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Newcastle', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': 'vmoYd37N', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '347', 'Total Passes (away)': '589', 'Completed Passes (home)': '261', 'Completed Passes (away)': '490', 'Tackles (home)': '18', 'Tackles (away)': '20', 'Attacks (home)': '96', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Liverpool', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': '6ZnQbPxB', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '3', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '897', 'Total Passes (away)': '354', 'Completed Passes (home)': '799', 'Completed Passes (away)': '258', 'Tackles (home)': '15', 'Tackles (away)': '22', 'Attacks (home)': '167', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Newcastle', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'M7vgJjKf', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '264', 'Total Passes (away)': '584', 'Completed Passes (home)': '166', 'Completed Passes (away)': '485', 'Tackles (home)': '26', 'Tackles (away)': '22', 'Attacks (home)': '102', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '55'}, {'home_team': 'West Ham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'ATKmuYtE', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '9', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '506', 'Total Passes (away)': '325', 'Completed Passes (home)': '416', 'Completed Passes (away)': '219', 'Tackles (home)': '6', 'Tackles (away)': '11', 'Attacks (home)': '96', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Manchester Utd', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '2', 'match_id': 'vqklKW4l', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '6', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Total Passes (home)': '623', 'Total Passes (away)': '386', 'Completed Passes (home)': '542', 'Completed Passes (away)': '302', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '120', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '82', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Southampton', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '0', 'match_id': '0bwcIAZ0', 'Ball Possession (home)': '24%', 'Ball Possession (away)': '76%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '12', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '213', 'Total Passes (away)': '655', 'Completed Passes (home)': '125', 'Completed Passes (away)': '580', 'Tackles (home)': '14', 'Tackles (away)': '12', 'Attacks (home)': '65', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '105'}, {'home_team': 'Watford', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '2', 'match_id': '8Ot5Gl4D', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '24', 'Throw-ins (away)': '36', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '396', 'Total Passes (away)': '382', 'Completed Passes (home)': '298', 'Completed Passes (away)': '282', 'Tackles (home)': '13', 'Tackles (away)': '22', 'Attacks (home)': '100', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '1', 'match_id': 'UXs1HUl7', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '14', 'Fouls (away)': '10', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '480', 'Total Passes (away)': '499', 'Completed Passes (home)': '391', 'Completed Passes (away)': '419', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '79', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Manchester City', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'QLQKIJTq', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '1', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '566', 'Total Passes (away)': '468', 'Completed Passes (home)': '477', 'Completed Passes (away)': '371', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '100', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Brentford', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '0', 'match_id': 'GnyoPLjG', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '3', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '2', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '477', 'Total Passes (away)': '540', 'Completed Passes (home)': '395', 'Completed Passes (away)': '455', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '81', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leicester', 'away_team': 'Crystal Palace', 'home_score': '2', 'away_score': '1', 'match_id': 'OCvgNaLS', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '511', 'Total Passes (away)': '495', 'Completed Passes (home)': '419', 'Completed Passes (away)': '413', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '113', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Norwich', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': 'MmKTGcbd', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '352', 'Total Passes (away)': '412', 'Completed Passes (home)': '224', 'Completed Passes (away)': '283', 'Tackles (home)': '10', 'Tackles (away)': '23', 'Attacks (home)': '94', 'Attacks (away)': '130', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Aston Villa', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '4', 'match_id': 'YNotQ1yA', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '477', 'Total Passes (away)': '461', 'Completed Passes (home)': '415', 'Completed Passes (away)': '402', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '111', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '17'}, {'home_team': 'Arsenal', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '2', 'match_id': 'MmrxRsM3', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '18', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '19', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '512', 'Total Passes (away)': '283', 'Completed Passes (home)': '427', 'Completed Passes (away)': '200', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '121', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Southampton', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '6', 'match_id': 'zi8Busyc', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '14', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '292', 'Total Passes (away)': '748', 'Completed Passes (home)': '215', 'Completed Passes (away)': '659', 'Tackles (home)': '18', 'Tackles (away)': '29', 'Attacks (home)': '80', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Watford', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '3', 'match_id': 'Es7Fv1j3', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '40', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '380', 'Total Passes (away)': '412', 'Completed Passes (home)': '250', 'Completed Passes (away)': '263', 'Tackles (home)': '21', 'Tackles (away)': '46', 'Attacks (home)': '160', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Everton', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'fwzkOu6M', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '307', 'Total Passes (away)': '641', 'Completed Passes (home)': '202', 'Completed Passes (away)': '520', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '110', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '95'}, {'home_team': 'Newcastle', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '8pGPHwqj', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '378', 'Total Passes (away)': '546', 'Completed Passes (home)': '308', 'Completed Passes (away)': '453', 'Tackles (home)': '11', 'Tackles (away)': '24', 'Attacks (home)': '89', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Burnley', 'away_team': 'Everton', 'home_score': '3', 'away_score': '2', 'match_id': 'pYadye5a', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '16', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '36', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '16', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '337', 'Total Passes (away)': '325', 'Completed Passes (home)': '216', 'Completed Passes (away)': '206', 'Tackles (home)': '11', 'Tackles (away)': '19', 'Attacks (home)': '94', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Crystal Palace', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'KKL6B2MG', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '293', 'Total Passes (away)': '647', 'Completed Passes (home)': '208', 'Completed Passes (away)': '551', 'Tackles (home)': '18', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '132', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Tottenham', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '1', 'match_id': 'CI0o4KEj', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '10', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '10', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '604', 'Total Passes (away)': '379', 'Completed Passes (home)': '545', 'Completed Passes (away)': '308', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '91', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '46'}, {'home_team': 'West Ham', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'lzpUS3ii', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '529', 'Total Passes (away)': '407', 'Completed Passes (home)': '432', 'Completed Passes (away)': '330', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '89', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Manchester Utd', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': 'YR1s50ap', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '582', 'Total Passes (away)': '495', 'Completed Passes (home)': '501', 'Completed Passes (away)': '415', 'Tackles (home)': '10', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '0', 'match_id': '829eE4xb', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '31', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '18', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '30', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '478', 'Total Passes (away)': '288', 'Completed Passes (home)': '389', 'Completed Passes (away)': '189', 'Tackles (home)': '14', 'Tackles (away)': '17', 'Attacks (home)': '139', 'Attacks (away)': '59', 'Dangerous Attacks (home)': '91', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Burnley', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '2', 'match_id': 'ng8aDOi4', 'Ball Possession (home)': '23%', 'Ball Possession (away)': '77%', 'Goal Attempts (home)': '3', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '8', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '235', 'Total Passes (away)': '778', 'Completed Passes (home)': '157', 'Completed Passes (away)': '686', 'Tackles (home)': '11', 'Tackles (away)': '7', 'Attacks (home)': '70', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '16', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Chelsea', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '4', 'match_id': 'tUM2Cr7A', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Total Passes (home)': '641', 'Total Passes (away)': '260', 'Completed Passes (home)': '578', 'Completed Passes (away)': '188', 'Tackles (home)': '9', 'Tackles (away)': '19', 'Attacks (home)': '125', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Leeds', 'away_team': 'Southampton', 'home_score': '1', 'away_score': '1', 'match_id': '2qBBAMyN', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '14', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '470', 'Total Passes (away)': '360', 'Completed Passes (home)': '336', 'Completed Passes (away)': '235', 'Tackles (home)': '19', 'Tackles (away)': '9', 'Attacks (home)': '112', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Wolves', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'SQrYRN6c', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '421', 'Total Passes (away)': '441', 'Completed Passes (home)': '335', 'Completed Passes (away)': '367', 'Tackles (home)': '23', 'Tackles (away)': '17', 'Attacks (home)': '65', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Liverpool', 'away_team': 'Watford', 'home_score': '2', 'away_score': '0', 'match_id': 'GnFF9tiT', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '716', 'Total Passes (away)': '263', 'Completed Passes (home)': '598', 'Completed Passes (away)': '163', 'Tackles (home)': '23', 'Tackles (away)': '23', 'Attacks (home)': '169', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Tottenham', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': 'bXR4isVp', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '604', 'Total Passes (away)': '544', 'Completed Passes (home)': '546', 'Completed Passes (away)': '483', 'Tackles (home)': '13', 'Tackles (away)': '6', 'Attacks (home)': '106', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Leicester', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '1', 'match_id': 'faqMa5N4', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '12', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '514', 'Total Passes (away)': '452', 'Completed Passes (home)': '436', 'Completed Passes (away)': '366', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '101', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Aston Villa', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': 'YqeD1Rhh', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '441', 'Total Passes (away)': '521', 'Completed Passes (home)': '362', 'Completed Passes (away)': '445', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '74', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '3', 'match_id': 'QwKjFpNi', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '17', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '414', 'Total Passes (away)': '448', 'Completed Passes (home)': '326', 'Completed Passes (away)': '348', 'Tackles (home)': '15', 'Tackles (away)': '26', 'Attacks (home)': '91', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'foImVv0N', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '276', 'Total Passes (away)': '447', 'Completed Passes (home)': '183', 'Completed Passes (away)': '343', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '107', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Arsenal', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'b76idBaF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '6', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '505', 'Total Passes (away)': '528', 'Completed Passes (home)': '407', 'Completed Passes (away)': '434', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '96', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '2', 'match_id': 'Ua8TGTNF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '496', 'Total Passes (away)': '551', 'Completed Passes (home)': '424', 'Completed Passes (away)': '481', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '126', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '0', 'match_id': 'EuOno68B', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '14', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '269', 'Total Passes (away)': '765', 'Completed Passes (home)': '174', 'Completed Passes (away)': '662', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '58', 'Attacks (away)': '175', 'Dangerous Attacks (home)': '22', 'Dangerous Attacks (away)': '88'}, {'home_team': 'Arsenal', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '0', 'match_id': 'nD4wkl9n', 'Ball Possession (home)': '46%', 'Ball Possession (away)': '54%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '481', 'Total Passes (away)': '564', 'Completed Passes (home)': '414', 'Completed Passes (away)': '494', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '104', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Chelsea', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'YT6knng5', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '22', 'Free Kicks (away)': '21', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '6', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '17', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '570', 'Total Passes (away)': '209', 'Completed Passes (home)': '491', 'Completed Passes (away)': '130', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '103', 'Attacks (away)': '75', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Everton', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': 'hWMjpQNH', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '356', 'Total Passes (away)': '597', 'Completed Passes (home)': '276', 'Completed Passes (away)': '518', 'Tackles (home)': '22', 'Tackles (away)': '12', 'Attacks (home)': '78', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leeds', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '1', 'match_id': 'ngMfqpwO', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '18', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '421', 'Total Passes (away)': '382', 'Completed Passes (home)': '315', 'Completed Passes (away)': '278', 'Tackles (home)': '28', 'Tackles (away)': '12', 'Attacks (home)': '100', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Southampton', 'away_team': 'Watford', 'home_score': '1', 'away_score': '2', 'match_id': 'QJi53mOu', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '498', 'Total Passes (away)': '306', 'Completed Passes (home)': '386', 'Completed Passes (away)': '203', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '108', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '34'}, {'home_team': 'West Ham', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': '4Aj927wn', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '3', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '443', 'Total Passes (away)': '501', 'Completed Passes (home)': '365', 'Completed Passes (away)': '423', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '108', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Manchester Utd', 'away_team': 'Tottenham', 'home_score': '3', 'away_score': '2', 'match_id': '0dQbr4hU', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '459', 'Total Passes (away)': '584', 'Completed Passes (home)': '391', 'Completed Passes (away)': '519', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '89', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Brentford', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': '0G8sl8Oh', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '4', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '10', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '475', 'Total Passes (away)': '373', 'Completed Passes (home)': '325', 'Completed Passes (away)': '238', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '105', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Brighton', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'fw8omSwa', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '15', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '430', 'Total Passes (away)': '401', 'Completed Passes (home)': '336', 'Completed Passes (away)': '313', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '91', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Leeds', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '3', 'match_id': 'zcZpUbFT', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '15', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '5', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '3', 'Total Passes (home)': '419', 'Total Passes (away)': '407', 'Completed Passes (home)': '323', 'Completed Passes (away)': '333', 'Tackles (home)': '25', 'Tackles (away)': '15', 'Attacks (home)': '124', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Norwich', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '3', 'match_id': 'dOuwdNMT', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '353', 'Total Passes (away)': '712', 'Completed Passes (home)': '287', 'Completed Passes (away)': '651', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '62', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Southampton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '2', 'match_id': 'vVRt0aac', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '648', 'Total Passes (away)': '306', 'Completed Passes (home)': '539', 'Completed Passes (away)': '203', 'Tackles (home)': '15', 'Tackles (away)': '21', 'Attacks (home)': '142', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '76', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Wolves', 'away_team': 'Watford', 'home_score': '4', 'away_score': '0', 'match_id': 'IuNOzqWo', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '24', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '666', 'Total Passes (away)': '343', 'Completed Passes (home)': '586', 'Completed Passes (away)': '263', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '117', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Tottenham', 'away_team': 'Everton', 'home_score': '5', 'away_score': '0', 'match_id': 'v9bNrDnD', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '650', 'Total Passes (away)': '530', 'Completed Passes (home)': '575', 'Completed Passes (away)': '452', 'Tackles (home)': '25', 'Tackles (away)': '20', 'Attacks (home)': '103', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '1', 'match_id': 'K8iBoF2f', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '10', 'Fouls (away)': '14', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '753', 'Total Passes (away)': '331', 'Completed Passes (home)': '700', 'Completed Passes (away)': '276', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '127', 'Attacks (away)': '54', 'Dangerous Attacks (home)': '79', 'Dangerous Attacks (away)': '24'}, {'home_team': 'Watford', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '3', 'match_id': 'SOi57dPD', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '36', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '428', 'Total Passes (away)': '556', 'Completed Passes (home)': '319', 'Completed Passes (away)': '468', 'Tackles (home)': '17', 'Tackles (away)': '20', 'Attacks (home)': '104', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Liverpool', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'Qoh7neml', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '715', 'Total Passes (away)': '316', 'Completed Passes (home)': '612', 'Completed Passes (away)': '228', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '152', 'Attacks (away)': '69', 'Dangerous Attacks (home)': '72', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Aston Villa', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '0', 'match_id': 'SACWhcAK', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '353', 'Total Passes (away)': '556', 'Completed Passes (home)': '261', 'Completed Passes (away)': '464', 'Tackles (home)': '14', 'Tackles (away)': '15', 'Attacks (home)': '63', 'Attacks (away)': '159', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Burnley', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '4', 'match_id': '61BzhHPQ', 'Ball Possession (home)': '27%', 'Ball Possession (away)': '73%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '285', 'Total Passes (away)': '790', 'Completed Passes (home)': '192', 'Completed Passes (away)': '705', 'Tackles (home)': '25', 'Tackles (away)': '14', 'Attacks (home)': '94', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Newcastle', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '1', 'match_id': 'IgAEpZH0', 'Ball Possession (home)': '32%', 'Ball Possession (away)': '68%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '14', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '14', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '304', 'Total Passes (away)': '634', 'Completed Passes (home)': '191', 'Completed Passes (away)': '524', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '84', 'Attacks (away)': '173', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '89'}, {'home_team': 'Norwich', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '3', 'match_id': '0IaJqgX6', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '20', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '31', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '18', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '457', 'Total Passes (away)': '308', 'Completed Passes (home)': '352', 'Completed Passes (away)': '215', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '108', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Wolves', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '2', 'match_id': '4lFYkUgt', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '8', 'Throw-ins (home)': '16', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '561', 'Total Passes (away)': '308', 'Completed Passes (home)': '456', 'Completed Passes (away)': '227', 'Tackles (home)': '20', 'Tackles (away)': '14', 'Attacks (home)': '122', 'Attacks (away)': '83', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Leicester', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '0', 'match_id': 'neg3myYs', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '32', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '471', 'Total Passes (away)': '133', 'Completed Passes (home)': '373', 'Completed Passes (away)': '343', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '96', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Burnley', 'away_team': 'Leicester', 'home_score': '0', 'away_score': '2', 'match_id': '6qrNuVDr', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '10', 'Free Kicks (home)': '16', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '4', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '352', 'Total Passes (away)': '433', 'Completed Passes (home)': '230', 'Completed Passes (away)': '313', 'Tackles (home)': '20', 'Tackles (away)': '12', 'Attacks (home)': '116', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '37'}, {'home_team': 'West Ham', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': 'YmDSgweE', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '3', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '2', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '397', 'Total Passes (away)': '635', 'Completed Passes (home)': '312', 'Completed Passes (away)': '538', 'Tackles (home)': '15', 'Tackles (away)': '13', 'Attacks (home)': '84', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Everton', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': 'Uepzlm7e', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '12', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '320', 'Total Passes (away)': '676', 'Completed Passes (home)': '244', 'Completed Passes (away)': '597', 'Tackles (home)': '22', 'Tackles (away)': '17', 'Attacks (home)': '75', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Brighton', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '2', 'match_id': 'WK4afkUR', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '5', 'Total Passes (home)': '569', 'Total Passes (away)': '289', 'Completed Passes (home)': '499', 'Completed Passes (away)': '228', 'Tackles (home)': '17', 'Tackles (away)': '22', 'Attacks (home)': '115', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '2', 'match_id': 'xb5eeVEL', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '26', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '301', 'Total Passes (away)': '504', 'Completed Passes (home)': '199', 'Completed Passes (away)': '417', 'Tackles (home)': '9', 'Tackles (away)': '13', 'Attacks (home)': '98', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '63'}, {'home_team': 'Crystal Palace', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'j5oWlTik', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '17', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '27', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '17', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '532', 'Total Passes (away)': '364', 'Completed Passes (home)': '408', 'Completed Passes (away)': '245', 'Tackles (home)': '13', 'Tackles (away)': '12', 'Attacks (home)': '102', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Manchester Utd', 'away_team': 'Watford', 'home_score': '0', 'away_score': '0', 'match_id': 'GCrrnRy8', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '28', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '2', 'Fouls (away)': '7', 'Total Passes (home)': '676', 'Total Passes (away)': '335', 'Completed Passes (home)': '573', 'Completed Passes (away)': '235', 'Tackles (home)': '20', 'Tackles (away)': '22', 'Attacks (home)': '139', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '98', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Leeds', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '4', 'match_id': 'xMqvm7M1', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '13', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '16', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '449', 'Total Passes (away)': '474', 'Completed Passes (home)': '387', 'Completed Passes (away)': '418', 'Tackles (home)': '17', 'Tackles (away)': '10', 'Attacks (home)': '120', 'Attacks (away)': '67', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Southampton', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'Kp9OfJu8', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '27', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '501', 'Total Passes (away)': '360', 'Completed Passes (home)': '407', 'Completed Passes (away)': '272', 'Tackles (home)': '9', 'Tackles (away)': '18', 'Attacks (home)': '105', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '96', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Arsenal', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '1', 'match_id': 'Q5QWYM0b', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '11', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '508', 'Total Passes (away)': '407', 'Completed Passes (home)': '418', 'Completed Passes (away)': '302', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '161', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Liverpool', 'away_team': 'Leeds', 'home_score': '6', 'away_score': '0', 'match_id': 'OOb0zFK5', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '15', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '15', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '6', 'Throw-ins (home)': '20', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '672', 'Total Passes (away)': '378', 'Completed Passes (home)': '583', 'Completed Passes (away)': '280', 'Tackles (home)': '8', 'Tackles (away)': '21', 'Attacks (home)': '140', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Burnley', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '0', 'match_id': 'GbgXjt4g', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '15', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Total Passes (home)': '326', 'Total Passes (away)': '639', 'Completed Passes (home)': '259', 'Completed Passes (away)': '543', 'Tackles (home)': '11', 'Tackles (away)': '15', 'Attacks (home)': '105', 'Attacks (away)': '129', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '84'}, {'home_team': 'Watford', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '4', 'match_id': 'QTWZJgzP', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '456', 'Total Passes (away)': '556', 'Completed Passes (home)': '363', 'Completed Passes (away)': '469', 'Tackles (home)': '11', 'Tackles (away)': '23', 'Attacks (home)': '103', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Wolves', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'tWBncip9', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '319', 'Total Passes (away)': '566', 'Completed Passes (home)': '228', 'Completed Passes (away)': '483', 'Tackles (home)': '22', 'Tackles (away)': '22', 'Attacks (home)': '54', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Leeds', 'away_team': 'Manchester Utd', 'home_score': '2', 'away_score': '4', 'match_id': 'GnXmxj8q', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '19', 'Yellow Cards (home)': '6', 'Yellow Cards (away)': '3', 'Total Passes (home)': '409', 'Total Passes (away)': '340', 'Completed Passes (home)': '313', 'Completed Passes (away)': '247', 'Tackles (home)': '24', 'Tackles (away)': '19', 'Attacks (home)': '101', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Manchester City', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '3', 'match_id': 'x2LdzUxd', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '22', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '755', 'Total Passes (away)': '308', 'Completed Passes (home)': '681', 'Completed Passes (away)': '237', 'Tackles (home)': '13', 'Tackles (away)': '13', 'Attacks (home)': '192', 'Attacks (away)': '41', 'Dangerous Attacks (home)': '149', 'Dangerous Attacks (away)': '7'}, {'home_team': 'Arsenal', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '1', 'match_id': 'lxm9qYF9', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '562', 'Total Passes (away)': '294', 'Completed Passes (home)': '483', 'Completed Passes (away)': '203', 'Tackles (home)': '14', 'Tackles (away)': '14', 'Attacks (home)': '132', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Aston Villa', 'away_team': 'Watford', 'home_score': '0', 'away_score': '1', 'match_id': '2uiDrhVF', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '14', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '550', 'Total Passes (away)': '383', 'Completed Passes (home)': '458', 'Completed Passes (away)': '284', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '135', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '26'}, {'home_team': 'Brighton', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '3', 'match_id': 'p4tIsCpM', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '579', 'Total Passes (away)': '260', 'Completed Passes (home)': '484', 'Completed Passes (away)': '163', 'Tackles (home)': '13', 'Tackles (away)': '17', 'Attacks (home)': '104', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Crystal Palace', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '1', 'match_id': 'OfuMtWaS', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '20', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '4', 'Fouls (away)': '20', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '373', 'Total Passes (away)': '518', 'Completed Passes (home)': '287', 'Completed Passes (away)': '428', 'Tackles (home)': '22', 'Tackles (away)': '17', 'Attacks (home)': '82', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Liverpool', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '1', 'match_id': 'fwWiyANk', 'Ball Possession (home)': '70%', 'Ball Possession (away)': '30%', 'Goal Attempts (home)': '29', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '5', 'Throw-ins (home)': '11', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '697', 'Total Passes (away)': '308', 'Completed Passes (home)': '627', 'Completed Passes (away)': '215', 'Tackles (home)': '14', 'Tackles (away)': '19', 'Attacks (home)': '168', 'Attacks (away)': '56', 'Dangerous Attacks (home)': '99', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Southampton', 'away_team': 'Everton', 'home_score': '2', 'away_score': '0', 'match_id': 'lxP0Zmh2', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '11', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '12', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '506', 'Total Passes (away)': '401', 'Completed Passes (home)': '399', 'Completed Passes (away)': '277', 'Tackles (home)': '21', 'Tackles (away)': '20', 'Attacks (home)': '138', 'Attacks (away)': '126', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '43'}, {'home_team': 'West Ham', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': '2uDrbXU2', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '3', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '388', 'Total Passes (away)': '431', 'Completed Passes (home)': '294', 'Completed Passes (away)': '339', 'Tackles (home)': '11', 'Tackles (away)': '12', 'Attacks (home)': '98', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '59'}, {'home_team': 'Manchester Utd', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '0', 'match_id': 'dluJNyy0', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '512', 'Total Passes (away)': '516', 'Completed Passes (home)': '415', 'Completed Passes (away)': '433', 'Tackles (home)': '18', 'Tackles (away)': '17', 'Attacks (home)': '50', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '2', 'match_id': 'KnviTCVS', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '10', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '550', 'Total Passes (away)': '433', 'Completed Passes (home)': '450', 'Completed Passes (away)': '341', 'Tackles (home)': '21', 'Tackles (away)': '14', 'Attacks (home)': '97', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Burnley', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'UcovWEoA', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '8', 'Offsides (home)': '7', 'Offsides (away)': '3', 'Throw-ins (home)': '24', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '303', 'Total Passes (away)': '643', 'Completed Passes (home)': '198', 'Completed Passes (away)': '525', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '97', 'Attacks (away)': '129', 'Dangerous Attacks (home)': '20', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Newcastle', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '0', 'match_id': 'jVUMNjgj', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '16', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '22', 'Fouls (away)': '15', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '249', 'Total Passes (away)': '424', 'Completed Passes (home)': '170', 'Completed Passes (away)': '324', 'Tackles (home)': '15', 'Tackles (away)': '14', 'Attacks (home)': '102', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '29', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '2', 'match_id': 'GOl1ofoc', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '572', 'Total Passes (away)': '412', 'Completed Passes (home)': '470', 'Completed Passes (away)': '308', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '134', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '74', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'ULTQMA8d', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '12', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '281', 'Total Passes (away)': '707', 'Completed Passes (home)': '200', 'Completed Passes (away)': '627', 'Tackles (home)': '11', 'Tackles (away)': '5', 'Attacks (home)': '54', 'Attacks (away)': '149', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '94'}, {'home_team': 'Brentford', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '0', 'match_id': 'j7nzXfW3', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '377', 'Total Passes (away)': '504', 'Completed Passes (home)': '256', 'Completed Passes (away)': '389', 'Tackles (home)': '31', 'Tackles (away)': '17', 'Attacks (home)': '105', 'Attacks (away)': '142', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Everton', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '0', 'match_id': 'xOlnUhGM', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '34', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '344', 'Total Passes (away)': '467', 'Completed Passes (home)': '251', 'Completed Passes (away)': '371', 'Tackles (home)': '22', 'Tackles (away)': '29', 'Attacks (home)': '132', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Watford', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '2', 'match_id': 'fFm5pE03', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '315', 'Total Passes (away)': '592', 'Completed Passes (home)': '222', 'Completed Passes (away)': '469', 'Tackles (home)': '18', 'Tackles (away)': '21', 'Attacks (home)': '96', 'Attacks (away)': '139', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Manchester Utd', 'away_team': 'Southampton', 'home_score': '1', 'away_score': '1', 'match_id': 'd8VIOWwp', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '7', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '0', 'Total Passes (home)': '469', 'Total Passes (away)': '430', 'Completed Passes (home)': '380', 'Completed Passes (away)': '347', 'Tackles (home)': '14', 'Tackles (away)': '17', 'Attacks (home)': '94', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Liverpool', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '0', 'match_id': 'lMtsP6YP', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '11', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '665', 'Total Passes (away)': '362', 'Completed Passes (home)': '557', 'Completed Passes (away)': '252', 'Tackles (home)': '18', 'Tackles (away)': '23', 'Attacks (home)': '178', 'Attacks (away)': '80', 'Dangerous Attacks (home)': '101', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Wolves', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': 'rPki2qRC', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '29', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '481', 'Total Passes (away)': '356', 'Completed Passes (home)': '393', 'Completed Passes (away)': '272', 'Tackles (home)': '12', 'Tackles (away)': '17', 'Attacks (home)': '112', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Aston Villa', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '3', 'match_id': 'YXtw77Cs', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '11', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '302', 'Total Passes (away)': '456', 'Completed Passes (home)': '225', 'Completed Passes (away)': '377', 'Tackles (home)': '22', 'Tackles (away)': '3', 'Attacks (home)': '72', 'Attacks (away)': '102', 'Dangerous Attacks (home)': '38', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '0', 'match_id': 'f3J9KQts', 'Ball Possession (home)': '75%', 'Ball Possession (away)': '25%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '22', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '10', 'Throw-ins (home)': '23', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Total Passes (home)': '709', 'Total Passes (away)': '227', 'Completed Passes (home)': '624', 'Completed Passes (away)': '136', 'Tackles (home)': '7', 'Tackles (away)': '13', 'Attacks (home)': '133', 'Attacks (away)': '63', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Norwich', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'ncdr45d0', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '18', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '256', 'Total Passes (away)': '669', 'Completed Passes (home)': '155', 'Completed Passes (away)': '565', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '69', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '25', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Tottenham', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '3', 'match_id': 'AVswQnJJ', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '433', 'Total Passes (away)': '472', 'Completed Passes (home)': '338', 'Completed Passes (away)': '383', 'Tackles (home)': '18', 'Tackles (away)': '14', 'Attacks (home)': '91', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Burnley', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'hzcv5osf', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '12', 'Free Kicks (home)': '11', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '288', 'Total Passes (away)': '518', 'Completed Passes (home)': '194', 'Completed Passes (away)': '421', 'Tackles (home)': '25', 'Tackles (away)': '15', 'Attacks (home)': '114', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '25', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Newcastle', 'away_team': 'Everton', 'home_score': '3', 'away_score': '1', 'match_id': 'MFle13tJ', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '26', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '292', 'Total Passes (away)': '454', 'Completed Passes (home)': '191', 'Completed Passes (away)': '346', 'Tackles (home)': '21', 'Tackles (away)': '19', 'Attacks (home)': '101', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '31'}, {'home_team': 'West Ham', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': '000n3PB6', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '40', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '1', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '609', 'Total Passes (away)': '335', 'Completed Passes (home)': '487', 'Completed Passes (away)': '225', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '138', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Burnley', 'away_team': 'Watford', 'home_score': '0', 'away_score': '0', 'match_id': 'Agb7SQMR', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '43', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '391', 'Total Passes (away)': '359', 'Completed Passes (home)': '270', 'Completed Passes (away)': '245', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '146', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '77'}, {'home_team': 'Chelsea', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '0', 'match_id': 'hEL3h8cl', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '15', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '17', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '606', 'Total Passes (away)': '341', 'Completed Passes (home)': '526', 'Completed Passes (away)': '267', 'Tackles (home)': '15', 'Tackles (away)': '14', 'Attacks (home)': '135', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '14'}, {'home_team': 'Arsenal', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '0', 'match_id': 'ObVXcUZQ', 'Ball Possession (home)': '76%', 'Ball Possession (away)': '24%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '643', 'Total Passes (away)': '211', 'Completed Passes (home)': '564', 'Completed Passes (away)': '136', 'Tackles (home)': '7', 'Tackles (away)': '18', 'Attacks (home)': '133', 'Attacks (away)': '68', 'Dangerous Attacks (home)': '80', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '3', 'match_id': 'zwB8iSCf', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '431', 'Total Passes (away)': '576', 'Completed Passes (home)': '317', 'Completed Passes (away)': '456', 'Tackles (home)': '13', 'Tackles (away)': '7', 'Attacks (home)': '78', 'Attacks (away)': '145', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Leicester', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'MgDKlQdD', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '14', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '460', 'Total Passes (away)': '577', 'Completed Passes (home)': '352', 'Completed Passes (away)': '469', 'Tackles (home)': '18', 'Tackles (away)': '22', 'Attacks (home)': '88', 'Attacks (away)': '143', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '79'}, {'home_team': 'Southampton', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '1', 'match_id': 'x2e7CTlK', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '5', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '11', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '5', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '278', 'Total Passes (away)': '777', 'Completed Passes (home)': '193', 'Completed Passes (away)': '701', 'Tackles (home)': '20', 'Tackles (away)': '21', 'Attacks (home)': '60', 'Attacks (away)': '191', 'Dangerous Attacks (home)': '12', 'Dangerous Attacks (away)': '127'}, {'home_team': 'Brentford', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '2', 'match_id': 'tvIaglrr', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '27', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '6', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '455', 'Total Passes (away)': '477', 'Completed Passes (home)': '331', 'Completed Passes (away)': '352', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '118', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Leeds', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '1', 'match_id': 'r3EGk6s7', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '477', 'Total Passes (away)': '277', 'Completed Passes (home)': '372', 'Completed Passes (away)': '186', 'Tackles (home)': '21', 'Tackles (away)': '18', 'Attacks (home)': '111', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Manchester Utd', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'Obi3D9ZD', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '548', 'Total Passes (away)': '413', 'Completed Passes (home)': '451', 'Completed Passes (away)': '308', 'Tackles (home)': '17', 'Tackles (away)': '9', 'Attacks (home)': '136', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '1', 'match_id': 'ET9CjnS0', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '35', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '14', 'Fouls (away)': '16', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '4', 'Total Passes (home)': '337', 'Total Passes (away)': '361', 'Completed Passes (home)': '221', 'Completed Passes (away)': '256', 'Tackles (home)': '24', 'Tackles (away)': '26', 'Attacks (home)': '111', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Watford', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '3', 'match_id': 'WOfBBm4Q', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '565', 'Total Passes (away)': '259', 'Completed Passes (home)': '439', 'Completed Passes (away)': '152', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '139', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Brentford', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '3', 'match_id': 'xt0aUnhF', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '9', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '8', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '7', 'Fouls (away)': '9', 'Total Passes (home)': '405', 'Total Passes (away)': '519', 'Completed Passes (home)': '291', 'Completed Passes (away)': '411', 'Tackles (home)': '17', 'Tackles (away)': '19', 'Attacks (home)': '124', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '58'}, {'home_team': 'Leicester', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '3', 'match_id': 'nFkZNpVr', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '27', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '569', 'Total Passes (away)': '592', 'Completed Passes (home)': '491', 'Completed Passes (away)': '521', 'Tackles (home)': '17', 'Tackles (away)': '20', 'Attacks (home)': '103', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Brighton', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'Eqbz6RRm', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '6', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '438', 'Total Passes (away)': '579', 'Completed Passes (home)': '360', 'Completed Passes (away)': '503', 'Tackles (home)': '16', 'Tackles (away)': '14', 'Attacks (home)': '99', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Liverpool', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '0', 'match_id': '0KdQvkTl', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '27', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '13', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '0', 'Offsides (home)': '2', 'Offsides (away)': '7', 'Throw-ins (home)': '26', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '10', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '712', 'Total Passes (away)': '340', 'Completed Passes (home)': '589', 'Completed Passes (away)': '212', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '163', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '21'}, {'home_team': 'West Ham', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '3', 'match_id': 'SWyPaj5E', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '31', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '386', 'Total Passes (away)': '442', 'Completed Passes (home)': '269', 'Completed Passes (away)': '322', 'Tackles (home)': '22', 'Tackles (away)': '23', 'Attacks (home)': '138', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Aston Villa', 'away_team': 'Manchester Utd', 'home_score': '2', 'away_score': '2', 'match_id': 'neVlbwU9', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '8', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '540', 'Total Passes (away)': '451', 'Completed Passes (home)': '454', 'Completed Passes (away)': '368', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '124', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Newcastle', 'away_team': 'Watford', 'home_score': '1', 'away_score': '1', 'match_id': 'MZpZxTc1', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '14', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '29', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '407', 'Total Passes (away)': '381', 'Completed Passes (home)': '306', 'Completed Passes (away)': '300', 'Tackles (home)': '27', 'Tackles (away)': '19', 'Attacks (home)': '138', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Norwich', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'zwkwxmD7', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '16', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '284', 'Total Passes (away)': '435', 'Completed Passes (home)': '200', 'Completed Passes (away)': '346', 'Tackles (home)': '18', 'Tackles (away)': '18', 'Attacks (home)': '73', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '1', 'match_id': 'p8WTbAKK', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '327', 'Total Passes (away)': '437', 'Completed Passes (home)': '229', 'Completed Passes (away)': '353', 'Tackles (home)': '23', 'Tackles (away)': '10', 'Attacks (home)': '79', 'Attacks (away)': '121', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Manchester City', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '0', 'match_id': 'vBeUw9re', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '1', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '20', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '579', 'Total Passes (away)': '459', 'Completed Passes (home)': '496', 'Completed Passes (away)': '384', 'Tackles (home)': '9', 'Tackles (away)': '22', 'Attacks (home)': '121', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '70', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Brighton', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'UJKgccqG', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '569', 'Total Passes (away)': '337', 'Completed Passes (home)': '467', 'Completed Passes (away)': '234', 'Tackles (home)': '21', 'Tackles (away)': '17', 'Attacks (home)': '146', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '68', 'Dangerous Attacks (away)': '32'}, {'home_team': 'West Ham', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'hzLHrwDP', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '4', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Total Passes (home)': '550', 'Total Passes (away)': '337', 'Completed Passes (home)': '463', 'Completed Passes (away)': '246', 'Tackles (home)': '8', 'Tackles (away)': '15', 'Attacks (home)': '122', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Southampton', 'away_team': 'Brentford', 'home_score': '4', 'away_score': '1', 'match_id': '4ErRLF5C', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '407', 'Total Passes (away)': '428', 'Completed Passes (home)': '293', 'Completed Passes (away)': '310', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '115', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Manchester Utd', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': '0vTx1upi', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '487', 'Total Passes (away)': '457', 'Completed Passes (home)': '390', 'Completed Passes (away)': '372', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '129', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Chelsea', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'Yi5FqvFG', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '14', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '574', 'Total Passes (away)': '463', 'Completed Passes (home)': '473', 'Completed Passes (away)': '355', 'Tackles (home)': '19', 'Tackles (away)': '12', 'Attacks (home)': '135', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Brentford', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'f16BpKaA', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '15', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '400', 'Total Passes (away)': '491', 'Completed Passes (home)': '299', 'Completed Passes (away)': '401', 'Tackles (home)': '20', 'Tackles (away)': '11', 'Attacks (home)': '94', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Everton', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '3', 'match_id': 'SjbOsIqT', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '29', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '395', 'Total Passes (away)': '425', 'Completed Passes (home)': '285', 'Completed Passes (away)': '307', 'Tackles (home)': '17', 'Tackles (away)': '25', 'Attacks (home)': '106', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leeds', 'away_team': 'Burnley', 'home_score': '3', 'away_score': '1', 'match_id': 'pWpjwxhp', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '5', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '360', 'Total Passes (away)': '297', 'Completed Passes (home)': '255', 'Completed Passes (away)': '178', 'Tackles (home)': '18', 'Tackles (away)': '14', 'Attacks (home)': '92', 'Attacks (away)': '114', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Crystal Palace', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '3', 'match_id': 'GGfKrbUM', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '18', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '1', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '16', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '558', 'Total Passes (away)': '339', 'Completed Passes (home)': '469', 'Completed Passes (away)': '244', 'Tackles (home)': '15', 'Tackles (away)': '31', 'Attacks (home)': '111', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '78', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Watford', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '1', 'match_id': 'YiRpaJE3', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '10', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '251', 'Total Passes (away)': '715', 'Completed Passes (home)': '169', 'Completed Passes (away)': '634', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '66', 'Attacks (away)': '161', 'Dangerous Attacks (home)': '18', 'Dangerous Attacks (away)': '110'}, {'home_team': 'Arsenal', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '2', 'match_id': 'QR17o0p4', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '11', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '5', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '2', 'Total Passes (home)': '249', 'Total Passes (away)': '644', 'Completed Passes (home)': '179', 'Completed Passes (away)': '561', 'Tackles (home)': '16', 'Tackles (away)': '14', 'Attacks (home)': '98', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '58'}, {'home_team': 'Manchester Utd', 'away_team': 'Burnley', 'home_score': '3', 'away_score': '1', 'match_id': 'j99fl20o', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '20', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '10', 'Total Passes (home)': '484', 'Total Passes (away)': '355', 'Completed Passes (home)': '374', 'Completed Passes (away)': '268', 'Tackles (home)': '8', 'Tackles (away)': '14', 'Attacks (home)': '97', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Brentford', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': '8UFyYtG4', 'Ball Possession (home)': '24%', 'Ball Possession (away)': '76%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '10', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Total Passes (home)': '217', 'Total Passes (away)': '710', 'Completed Passes (home)': '136', 'Completed Passes (away)': '629', 'Tackles (home)': '17', 'Tackles (away)': '11', 'Attacks (home)': '55', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '21', 'Dangerous Attacks (away)': '68'}, {'home_team': 'Chelsea', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'MXJuX0VA', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '14', 'Fouls (away)': '7', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '430', 'Total Passes (away)': '473', 'Completed Passes (home)': '343', 'Completed Passes (away)': '378', 'Tackles (home)': '23', 'Tackles (away)': '23', 'Attacks (home)': '77', 'Attacks (away)': '60', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Arsenal', 'away_team': 'Everton', 'home_score': '5', 'away_score': '1', 'match_id': 'CWuae5l9', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '647', 'Total Passes (away)': '234', 'Completed Passes (home)': '583', 'Completed Passes (away)': '151', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '136', 'Attacks (away)': '55', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Brentford', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '2', 'match_id': 'QZq3fP3F', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '13', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '412', 'Total Passes (away)': '438', 'Completed Passes (home)': '318', 'Completed Passes (away)': '317', 'Tackles (home)': '12', 'Tackles (away)': '10', 'Attacks (home)': '105', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Brighton', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': '8bZ7gqJL', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '489', 'Total Passes (away)': '480', 'Completed Passes (home)': '399', 'Completed Passes (away)': '377', 'Tackles (home)': '12', 'Tackles (away)': '14', 'Attacks (home)': '100', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Burnley', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '2', 'match_id': 'nkYBh3YR', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '35', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '344', 'Total Passes (away)': '338', 'Completed Passes (home)': '238', 'Completed Passes (away)': '240', 'Tackles (home)': '11', 'Tackles (away)': '22', 'Attacks (home)': '116', 'Attacks (away)': '80', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Chelsea', 'away_team': 'Watford', 'home_score': '2', 'away_score': '1', 'match_id': 'IXKwlNtq', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Total Passes (home)': '734', 'Total Passes (away)': '281', 'Completed Passes (home)': '658', 'Completed Passes (away)': '202', 'Tackles (home)': '32', 'Tackles (away)': '25', 'Attacks (home)': '147', 'Attacks (away)': '63', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'dOJsmsdk', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '22', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '22', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '327', 'Total Passes (away)': '526', 'Completed Passes (home)': '233', 'Completed Passes (away)': '426', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '89', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '1', 'match_id': 'vm9nn1Be', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '448', 'Total Passes (away)': '425', 'Completed Passes (home)': '350', 'Completed Passes (away)': '326', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '83', 'Attacks (away)': '105', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Liverpool', 'away_team': 'Wolves', 'home_score': '3', 'away_score': '1', 'match_id': 'hjDjoLQ1', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '29', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '14', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '669', 'Total Passes (away)': '400', 'Completed Passes (home)': '590', 'Completed Passes (away)': '319', 'Tackles (home)': '21', 'Tackles (away)': '18', 'Attacks (home)': '132', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Manchester City', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '2', 'match_id': '6g1Y9432', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '30', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '601', 'Total Passes (away)': '243', 'Completed Passes (home)': '518', 'Completed Passes (away)': '163', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '151', 'Attacks (away)': '49', 'Dangerous Attacks (home)': '107', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '5', 'match_id': 'pp0x9OI8', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '13', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '402', 'Total Passes (away)': '614', 'Completed Passes (home)': '307', 'Completed Passes (away)': '537', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '78', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Aston Villa', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'UZOxr6ME', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '19', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '20', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '587', 'Total Passes (away)': '231', 'Completed Passes (home)': '529', 'Completed Passes (away)': '158', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '111', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '8tdRk9xq', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '750', 'Total Passes (away)': '370', 'Completed Passes (home)': '695', 'Completed Passes (away)': '293', 'Tackles (home)': '10', 'Tackles (away)': '18', 'Attacks (home)': '153', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '78', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Everton', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '2', 'match_id': 'YqNGxuLF', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '347', 'Total Passes (away)': '466', 'Completed Passes (home)': '244', 'Completed Passes (away)': '360', 'Tackles (home)': '25', 'Tackles (away)': '20', 'Attacks (home)': '116', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Southampton', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'SKD2jeop', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '8', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '300', 'Total Passes (away)': '734', 'Completed Passes (home)': '224', 'Completed Passes (away)': '654', 'Tackles (home)': '15', 'Tackles (away)': '18', 'Attacks (home)': '72', 'Attacks (away)': '170', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '78'}, {'home_team': 'Newcastle', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '0', 'match_id': 'IBoZ7NGH', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '6', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '325', 'Total Passes (away)': '332', 'Completed Passes (home)': '260', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '15', 'Attacks (home)': '79', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Everton', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '3', 'match_id': 'SMhMAPWb', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '11', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Red Cards (home)': '2', 'Red Cards (away)': '0', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '212', 'Total Passes (away)': '586', 'Completed Passes (home)': '143', 'Completed Passes (away)': '491', 'Tackles (home)': '5', 'Tackles (away)': '14', 'Attacks (home)': '76', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '81'}, {'home_team': 'Aston Villa', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'lWgIB5Hh', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '464', 'Total Passes (away)': '486', 'Completed Passes (home)': '377', 'Completed Passes (away)': '405', 'Tackles (home)': '20', 'Tackles (away)': '12', 'Attacks (home)': '95', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Leeds', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'ddcQ9qn5', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '394', 'Total Passes (away)': '403', 'Completed Passes (home)': '270', 'Completed Passes (away)': '296', 'Tackles (home)': '13', 'Tackles (away)': '13', 'Attacks (home)': '97', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Watford', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '5', 'match_id': '0YBAlZFd', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '351', 'Total Passes (away)': '526', 'Completed Passes (home)': '272', 'Completed Passes (away)': '447', 'Tackles (home)': '19', 'Tackles (away)': '26', 'Attacks (home)': '99', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '42'}, {'home_team': 'West Ham', 'away_team': 'Manchester City', 'home_score': '2', 'away_score': '2', 'match_id': 'vJsicRJd', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '31', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '13', 'Free Kicks (home)': '5', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '9', 'Fouls (away)': '5', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '189', 'Total Passes (away)': '696', 'Completed Passes (home)': '121', 'Completed Passes (away)': '605', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '45', 'Attacks (away)': '149', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '114'}, {'home_team': 'Wolves', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '1', 'match_id': 'I9tedoZ2', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '613', 'Total Passes (away)': '350', 'Completed Passes (home)': '513', 'Completed Passes (away)': '254', 'Tackles (home)': '8', 'Tackles (away)': '24', 'Attacks (home)': '148', 'Attacks (away)': '51', 'Dangerous Attacks (home)': '90', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Tottenham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '0', 'match_id': 'MsD6kF0j', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '647', 'Total Passes (away)': '299', 'Completed Passes (home)': '566', 'Completed Passes (away)': '221', 'Tackles (home)': '9', 'Tackles (away)': '17', 'Attacks (home)': '116', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Tottenham', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'ltwL0Wk8', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '7', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '5', 'Total Passes (home)': '561', 'Total Passes (away)': '412', 'Completed Passes (home)': '498', 'Completed Passes (away)': '346', 'Tackles (home)': '16', 'Tackles (away)': '6', 'Attacks (home)': '120', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Wolves', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '5', 'match_id': '8EwivhdK', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '9', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '2', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '383', 'Total Passes (away)': '787', 'Completed Passes (home)': '319', 'Completed Passes (away)': '721', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '49', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Leicester', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'OMqfxd7j', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Total Passes (home)': '639', 'Total Passes (away)': '354', 'Completed Passes (home)': '554', 'Completed Passes (away)': '278', 'Tackles (home)': '24', 'Tackles (away)': '19', 'Attacks (home)': '132', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Watford', 'away_team': 'Everton', 'home_score': '0', 'away_score': '0', 'match_id': 'CzGnGQ7o', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '13', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '12', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '470', 'Total Passes (away)': '488', 'Completed Passes (home)': '385', 'Completed Passes (away)': '384', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '84', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Leeds', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'QuopLCkr', 'Ball Possession (home)': '32%', 'Ball Possession (away)': '68%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '17', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '10', 'Fouls (away)': '14', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '379', 'Total Passes (away)': '817', 'Completed Passes (home)': '290', 'Completed Passes (away)': '730', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '73', 'Attacks (away)': '159', 'Dangerous Attacks (home)': '19', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Aston Villa', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'fgOCwL59', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '12', 'Total Passes (home)': '343', 'Total Passes (away)': '530', 'Completed Passes (home)': '258', 'Completed Passes (away)': '441', 'Tackles (home)': '12', 'Tackles (away)': '15', 'Attacks (home)': '77', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Manchester City', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '0', 'match_id': 'h409DRnt', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '14', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '12', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '712', 'Total Passes (away)': '281', 'Completed Passes (home)': '645', 'Completed Passes (away)': '216', 'Tackles (home)': '8', 'Tackles (away)': '19', 'Attacks (home)': '139', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Arsenal', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '1', 'match_id': '2a3raSXn', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '30', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '621', 'Total Passes (away)': '364', 'Completed Passes (home)': '556', 'Completed Passes (away)': '285', 'Tackles (home)': '16', 'Tackles (away)': '24', 'Attacks (home)': '152', 'Attacks (away)': '36', 'Dangerous Attacks (home)': '109', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Leicester', 'away_team': 'Everton', 'home_score': '1', 'away_score': '2', 'match_id': 'xhQagO1O', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '631', 'Total Passes (away)': '332', 'Completed Passes (home)': '545', 'Completed Passes (away)': '239', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '122', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Norwich', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '4', 'match_id': '674DCo2n', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '8', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '384', 'Total Passes (away)': '679', 'Completed Passes (home)': '328', 'Completed Passes (away)': '616', 'Tackles (home)': '12', 'Tackles (away)': '12', 'Attacks (home)': '87', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Liverpool', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '1', 'match_id': 'GrP3hrHU', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '13', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '4', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '618', 'Total Passes (away)': '338', 'Completed Passes (home)': '529', 'Completed Passes (away)': '249', 'Tackles (home)': '19', 'Tackles (away)': '20', 'Attacks (home)': '166', 'Attacks (away)': '48', 'Dangerous Attacks (home)': '99', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Brighton', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': 'OEiic62a', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '17', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '373', 'Total Passes (away)': '526', 'Completed Passes (home)': '293', 'Completed Passes (away)': '445', 'Tackles (home)': '11', 'Tackles (away)': '13', 'Attacks (home)': '90', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Brentford', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '0', 'match_id': 'tj2nbnmg', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '321', 'Total Passes (away)': '470', 'Completed Passes (home)': '219', 'Completed Passes (away)': '372', 'Tackles (home)': '10', 'Tackles (away)': '17', 'Attacks (home)': '86', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '71'}, {'home_team': 'Burnley', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '3', 'match_id': 'xIeedQH5', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '424', 'Total Passes (away)': '446', 'Completed Passes (home)': '328', 'Completed Passes (away)': '349', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '101', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Chelsea', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '2', 'match_id': 'WveaepXB', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '493', 'Total Passes (away)': '332', 'Completed Passes (home)': '399', 'Completed Passes (away)': '253', 'Tackles (home)': '20', 'Tackles (away)': '18', 'Attacks (home)': '109', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': 'AVg3f4nI', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '11', 'Fouls (away)': '18', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '533', 'Total Passes (away)': '248', 'Completed Passes (home)': '447', 'Completed Passes (away)': '170', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '112', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Manchester Utd', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '0', 'match_id': 'SnxDqmYa', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '714', 'Total Passes (away)': '376', 'Completed Passes (home)': '651', 'Completed Passes (away)': '309', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '113', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '59'}, {'home_team': 'West Ham', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '2', 'match_id': 'WGCC4lAP', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '586', 'Total Passes (away)': '454', 'Completed Passes (home)': '495', 'Completed Passes (away)': '372', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Everton', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '0', 'match_id': 'fZw5o93m', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '197', 'Total Passes (away)': '720', 'Completed Passes (home)': '114', 'Completed Passes (away)': '631', 'Tackles (home)': '13', 'Tackles (away)': '18', 'Attacks (home)': '62', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Tottenham', 'away_team': 'Leicester', 'home_score': '3', 'away_score': '1', 'match_id': 'IyVPtoII', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '404', 'Total Passes (away)': '627', 'Completed Passes (home)': '313', 'Completed Passes (away)': '540', 'Tackles (home)': '20', 'Tackles (away)': '16', 'Attacks (home)': '95', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leeds', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'ldw9pTIg', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '4', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '421', 'Total Passes (away)': '617', 'Completed Passes (home)': '329', 'Completed Passes (away)': '547', 'Tackles (home)': '29', 'Tackles (away)': '9', 'Attacks (home)': '63', 'Attacks (away)': '147', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Aston Villa', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'tWZ0nkls', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '32', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '398', 'Total Passes (away)': '491', 'Completed Passes (home)': '307', 'Completed Passes (away)': '378', 'Tackles (home)': '26', 'Tackles (away)': '12', 'Attacks (home)': '109', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Southampton', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '2', 'match_id': 'OEVLsR2C', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '16', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '326', 'Total Passes (away)': '529', 'Completed Passes (home)': '217', 'Completed Passes (away)': '424', 'Tackles (home)': '23', 'Tackles (away)': '8', 'Attacks (home)': '119', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Watford', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '2', 'match_id': 'UBYTu5XO', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '334', 'Total Passes (away)': '396', 'Completed Passes (home)': '213', 'Completed Passes (away)': '263', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Wolves', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '3', 'match_id': 'YPbv08It', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '4', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '4', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '458', 'Total Passes (away)': '479', 'Completed Passes (home)': '361', 'Completed Passes (away)': '382', 'Tackles (home)': '19', 'Tackles (away)': '22', 'Attacks (home)': '85', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Newcastle', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'pOWHr7m6', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '6', 'Offsides (home)': '9', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '274', 'Total Passes (away)': '528', 'Completed Passes (home)': '177', 'Completed Passes (away)': '434', 'Tackles (home)': '19', 'Tackles (away)': '15', 'Attacks (home)': '101', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester Utd', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'zmdU831B', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '16', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '345', 'Total Passes (away)': '628', 'Completed Passes (home)': '272', 'Completed Passes (away)': '556', 'Tackles (home)': '16', 'Tackles (away)': '12', 'Attacks (home)': '57', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '76'}, {'home_team': 'Crystal Palace', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '0', 'match_id': '8xMwVmJ6', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '31', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '432', 'Total Passes (away)': '392', 'Completed Passes (home)': '324', 'Completed Passes (away)': '266', 'Tackles (home)': '13', 'Tackles (away)': '29', 'Attacks (home)': '124', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Liverpool', 'away_team': 'Everton', 'home_score': '2', 'away_score': '0', 'match_id': 'UiAnTRmJ', 'Ball Possession (home)': '83%', 'Ball Possession (away)': '17%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '787', 'Total Passes (away)': '173', 'Completed Passes (home)': '700', 'Completed Passes (away)': '95', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '170', 'Attacks (away)': '53', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Brighton', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '2', 'match_id': 'MLJRXkZm', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '21', 'Throw-ins (away)': '33', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '352', 'Total Passes (away)': '366', 'Completed Passes (home)': '229', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '102', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Burnley', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '0CIVW9lf', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '324', 'Total Passes (away)': '590', 'Completed Passes (home)': '240', 'Completed Passes (away)': '488', 'Tackles (home)': '20', 'Tackles (away)': '28', 'Attacks (home)': '88', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Chelsea', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'fZHZVT30', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '12', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '710', 'Total Passes (away)': '354', 'Completed Passes (home)': '604', 'Completed Passes (away)': '253', 'Tackles (home)': '11', 'Tackles (away)': '14', 'Attacks (home)': '145', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '92', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '0', 'match_id': '4pPMYVJs', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '393', 'Total Passes (away)': '508', 'Completed Passes (home)': '297', 'Completed Passes (away)': '431', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '94', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Leicester', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '0', 'match_id': 'j1BrU7YC', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '16', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '520', 'Total Passes (away)': '289', 'Completed Passes (home)': '441', 'Completed Passes (away)': '196', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Manchester City', 'away_team': 'Watford', 'home_score': '5', 'away_score': '1', 'match_id': 'dbbUiBQJ', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '701', 'Total Passes (away)': '247', 'Completed Passes (home)': '615', 'Completed Passes (away)': '178', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '125', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Norwich', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '3', 'match_id': 'zkcYjVuQ', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '26', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '417', 'Total Passes (away)': '506', 'Completed Passes (home)': '313', 'Completed Passes (away)': '421', 'Tackles (home)': '20', 'Tackles (away)': '15', 'Attacks (home)': '102', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Arsenal', 'away_team': 'Manchester Utd', 'home_score': '3', 'away_score': '1', 'match_id': '2ywewCBQ', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '507', 'Total Passes (away)': '412', 'Completed Passes (home)': '430', 'Completed Passes (away)': '337', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '121', 'Attacks (away)': '64', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Burnley', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '0', 'match_id': 'CzfH0o8b', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '10', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '354', 'Total Passes (away)': '479', 'Completed Passes (home)': '244', 'Completed Passes (away)': '385', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '89', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Manchester City', 'away_team': 'Brighton', 'home_score': '3', 'away_score': '0', 'match_id': '0dnUcqhH', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '667', 'Total Passes (away)': '353', 'Completed Passes (home)': '586', 'Completed Passes (away)': '260', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '125', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '4', 'match_id': 'bXkrVY0G', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '704', 'Total Passes (away)': '332', 'Completed Passes (home)': '588', 'Completed Passes (away)': '249', 'Tackles (home)': '23', 'Tackles (away)': '20', 'Attacks (home)': '122', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Everton', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '0MoAPc6m', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '18', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '353', 'Total Passes (away)': '631', 'Completed Passes (home)': '254', 'Completed Passes (away)': '511', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '114', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Newcastle', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': 'vmoYd37N', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '347', 'Total Passes (away)': '589', 'Completed Passes (home)': '261', 'Completed Passes (away)': '490', 'Tackles (home)': '18', 'Tackles (away)': '20', 'Attacks (home)': '96', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Liverpool', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': '6ZnQbPxB', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '3', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '897', 'Total Passes (away)': '354', 'Completed Passes (home)': '799', 'Completed Passes (away)': '258', 'Tackles (home)': '15', 'Tackles (away)': '22', 'Attacks (home)': '167', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Newcastle', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'M7vgJjKf', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '264', 'Total Passes (away)': '584', 'Completed Passes (home)': '166', 'Completed Passes (away)': '485', 'Tackles (home)': '26', 'Tackles (away)': '22', 'Attacks (home)': '102', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '55'}, {'home_team': 'West Ham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'ATKmuYtE', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '9', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '506', 'Total Passes (away)': '325', 'Completed Passes (home)': '416', 'Completed Passes (away)': '219', 'Tackles (home)': '6', 'Tackles (away)': '11', 'Attacks (home)': '96', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Manchester Utd', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '2', 'match_id': 'vqklKW4l', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '6', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Total Passes (home)': '623', 'Total Passes (away)': '386', 'Completed Passes (home)': '542', 'Completed Passes (away)': '302', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '120', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '82', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Southampton', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '0', 'match_id': '0bwcIAZ0', 'Ball Possession (home)': '24%', 'Ball Possession (away)': '76%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '12', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '213', 'Total Passes (away)': '655', 'Completed Passes (home)': '125', 'Completed Passes (away)': '580', 'Tackles (home)': '14', 'Tackles (away)': '12', 'Attacks (home)': '65', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '105'}, {'home_team': 'Watford', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '2', 'match_id': '8Ot5Gl4D', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '24', 'Throw-ins (away)': '36', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '396', 'Total Passes (away)': '382', 'Completed Passes (home)': '298', 'Completed Passes (away)': '282', 'Tackles (home)': '13', 'Tackles (away)': '22', 'Attacks (home)': '100', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '1', 'match_id': 'UXs1HUl7', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '14', 'Fouls (away)': '10', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '480', 'Total Passes (away)': '499', 'Completed Passes (home)': '391', 'Completed Passes (away)': '419', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '79', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Manchester City', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'QLQKIJTq', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '1', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '566', 'Total Passes (away)': '468', 'Completed Passes (home)': '477', 'Completed Passes (away)': '371', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '100', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Brentford', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '0', 'match_id': 'GnyoPLjG', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '3', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '2', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '477', 'Total Passes (away)': '540', 'Completed Passes (home)': '395', 'Completed Passes (away)': '455', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '81', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leicester', 'away_team': 'Crystal Palace', 'home_score': '2', 'away_score': '1', 'match_id': 'OCvgNaLS', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '511', 'Total Passes (away)': '495', 'Completed Passes (home)': '419', 'Completed Passes (away)': '413', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '113', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Norwich', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': 'MmKTGcbd', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '352', 'Total Passes (away)': '412', 'Completed Passes (home)': '224', 'Completed Passes (away)': '283', 'Tackles (home)': '10', 'Tackles (away)': '23', 'Attacks (home)': '94', 'Attacks (away)': '130', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Aston Villa', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '4', 'match_id': 'YNotQ1yA', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '477', 'Total Passes (away)': '461', 'Completed Passes (home)': '415', 'Completed Passes (away)': '402', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '111', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '17'}, {'home_team': 'Arsenal', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '2', 'match_id': 'MmrxRsM3', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '18', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '19', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '512', 'Total Passes (away)': '283', 'Completed Passes (home)': '427', 'Completed Passes (away)': '200', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '121', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Southampton', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '6', 'match_id': 'zi8Busyc', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '14', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '292', 'Total Passes (away)': '748', 'Completed Passes (home)': '215', 'Completed Passes (away)': '659', 'Tackles (home)': '18', 'Tackles (away)': '29', 'Attacks (home)': '80', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Watford', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '3', 'match_id': 'Es7Fv1j3', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '40', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '380', 'Total Passes (away)': '412', 'Completed Passes (home)': '250', 'Completed Passes (away)': '263', 'Tackles (home)': '21', 'Tackles (away)': '46', 'Attacks (home)': '160', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Everton', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'fwzkOu6M', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '307', 'Total Passes (away)': '641', 'Completed Passes (home)': '202', 'Completed Passes (away)': '520', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '110', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '95'}, {'home_team': 'Newcastle', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '8pGPHwqj', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '378', 'Total Passes (away)': '546', 'Completed Passes (home)': '308', 'Completed Passes (away)': '453', 'Tackles (home)': '11', 'Tackles (away)': '24', 'Attacks (home)': '89', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Burnley', 'away_team': 'Everton', 'home_score': '3', 'away_score': '2', 'match_id': 'pYadye5a', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '16', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '36', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '16', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '337', 'Total Passes (away)': '325', 'Completed Passes (home)': '216', 'Completed Passes (away)': '206', 'Tackles (home)': '11', 'Tackles (away)': '19', 'Attacks (home)': '94', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Crystal Palace', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'KKL6B2MG', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '293', 'Total Passes (away)': '647', 'Completed Passes (home)': '208', 'Completed Passes (away)': '551', 'Tackles (home)': '18', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '132', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Tottenham', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '1', 'match_id': 'CI0o4KEj', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '10', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '10', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '604', 'Total Passes (away)': '379', 'Completed Passes (home)': '545', 'Completed Passes (away)': '308', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '91', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '46'}, {'home_team': 'West Ham', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'lzpUS3ii', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '529', 'Total Passes (away)': '407', 'Completed Passes (home)': '432', 'Completed Passes (away)': '330', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '89', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Manchester Utd', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': 'YR1s50ap', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '582', 'Total Passes (away)': '495', 'Completed Passes (home)': '501', 'Completed Passes (away)': '415', 'Tackles (home)': '10', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '0', 'match_id': '829eE4xb', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '31', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '18', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '30', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '478', 'Total Passes (away)': '288', 'Completed Passes (home)': '389', 'Completed Passes (away)': '189', 'Tackles (home)': '14', 'Tackles (away)': '17', 'Attacks (home)': '139', 'Attacks (away)': '59', 'Dangerous Attacks (home)': '91', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Burnley', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '2', 'match_id': 'ng8aDOi4', 'Ball Possession (home)': '23%', 'Ball Possession (away)': '77%', 'Goal Attempts (home)': '3', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '8', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '235', 'Total Passes (away)': '778', 'Completed Passes (home)': '157', 'Completed Passes (away)': '686', 'Tackles (home)': '11', 'Tackles (away)': '7', 'Attacks (home)': '70', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '16', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Chelsea', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '4', 'match_id': 'tUM2Cr7A', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Total Passes (home)': '641', 'Total Passes (away)': '260', 'Completed Passes (home)': '578', 'Completed Passes (away)': '188', 'Tackles (home)': '9', 'Tackles (away)': '19', 'Attacks (home)': '125', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Leeds', 'away_team': 'Southampton', 'home_score': '1', 'away_score': '1', 'match_id': '2qBBAMyN', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '14', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '470', 'Total Passes (away)': '360', 'Completed Passes (home)': '336', 'Completed Passes (away)': '235', 'Tackles (home)': '19', 'Tackles (away)': '9', 'Attacks (home)': '112', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Wolves', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'SQrYRN6c', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '421', 'Total Passes (away)': '441', 'Completed Passes (home)': '335', 'Completed Passes (away)': '367', 'Tackles (home)': '23', 'Tackles (away)': '17', 'Attacks (home)': '65', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Liverpool', 'away_team': 'Watford', 'home_score': '2', 'away_score': '0', 'match_id': 'GnFF9tiT', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '716', 'Total Passes (away)': '263', 'Completed Passes (home)': '598', 'Completed Passes (away)': '163', 'Tackles (home)': '23', 'Tackles (away)': '23', 'Attacks (home)': '169', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Tottenham', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': 'bXR4isVp', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '604', 'Total Passes (away)': '544', 'Completed Passes (home)': '546', 'Completed Passes (away)': '483', 'Tackles (home)': '13', 'Tackles (away)': '6', 'Attacks (home)': '106', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Leicester', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '1', 'match_id': 'faqMa5N4', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '12', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '514', 'Total Passes (away)': '452', 'Completed Passes (home)': '436', 'Completed Passes (away)': '366', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '101', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Aston Villa', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': 'YqeD1Rhh', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '441', 'Total Passes (away)': '521', 'Completed Passes (home)': '362', 'Completed Passes (away)': '445', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '74', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '3', 'match_id': 'QwKjFpNi', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '17', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '414', 'Total Passes (away)': '448', 'Completed Passes (home)': '326', 'Completed Passes (away)': '348', 'Tackles (home)': '15', 'Tackles (away)': '26', 'Attacks (home)': '91', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'foImVv0N', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '276', 'Total Passes (away)': '447', 'Completed Passes (home)': '183', 'Completed Passes (away)': '343', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '107', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Arsenal', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'b76idBaF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '6', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '505', 'Total Passes (away)': '528', 'Completed Passes (home)': '407', 'Completed Passes (away)': '434', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '96', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '2', 'match_id': 'Ua8TGTNF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '496', 'Total Passes (away)': '551', 'Completed Passes (home)': '424', 'Completed Passes (away)': '481', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '126', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '0', 'match_id': 'EuOno68B', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '14', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '269', 'Total Passes (away)': '765', 'Completed Passes (home)': '174', 'Completed Passes (away)': '662', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '58', 'Attacks (away)': '175', 'Dangerous Attacks (home)': '22', 'Dangerous Attacks (away)': '88'}, {'home_team': 'Arsenal', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '0', 'match_id': 'nD4wkl9n', 'Ball Possession (home)': '46%', 'Ball Possession (away)': '54%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '481', 'Total Passes (away)': '564', 'Completed Passes (home)': '414', 'Completed Passes (away)': '494', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '104', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Chelsea', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'YT6knng5', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '22', 'Free Kicks (away)': '21', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '6', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '17', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '570', 'Total Passes (away)': '209', 'Completed Passes (home)': '491', 'Completed Passes (away)': '130', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '103', 'Attacks (away)': '75', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Everton', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': 'hWMjpQNH', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '356', 'Total Passes (away)': '597', 'Completed Passes (home)': '276', 'Completed Passes (away)': '518', 'Tackles (home)': '22', 'Tackles (away)': '12', 'Attacks (home)': '78', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leeds', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '1', 'match_id': 'ngMfqpwO', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '18', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '421', 'Total Passes (away)': '382', 'Completed Passes (home)': '315', 'Completed Passes (away)': '278', 'Tackles (home)': '28', 'Tackles (away)': '12', 'Attacks (home)': '100', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Southampton', 'away_team': 'Watford', 'home_score': '1', 'away_score': '2', 'match_id': 'QJi53mOu', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '498', 'Total Passes (away)': '306', 'Completed Passes (home)': '386', 'Completed Passes (away)': '203', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '108', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '34'}, {'home_team': 'West Ham', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': '4Aj927wn', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '3', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '443', 'Total Passes (away)': '501', 'Completed Passes (home)': '365', 'Completed Passes (away)': '423', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '108', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Manchester Utd', 'away_team': 'Tottenham', 'home_score': '3', 'away_score': '2', 'match_id': '0dQbr4hU', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '459', 'Total Passes (away)': '584', 'Completed Passes (home)': '391', 'Completed Passes (away)': '519', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '89', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Brentford', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': '0G8sl8Oh', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '4', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '10', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '475', 'Total Passes (away)': '373', 'Completed Passes (home)': '325', 'Completed Passes (away)': '238', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '105', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Brighton', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'fw8omSwa', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '15', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '430', 'Total Passes (away)': '401', 'Completed Passes (home)': '336', 'Completed Passes (away)': '313', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '91', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Leeds', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '3', 'match_id': 'zcZpUbFT', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '15', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '5', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '3', 'Total Passes (home)': '419', 'Total Passes (away)': '407', 'Completed Passes (home)': '323', 'Completed Passes (away)': '333', 'Tackles (home)': '25', 'Tackles (away)': '15', 'Attacks (home)': '124', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Norwich', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '3', 'match_id': 'dOuwdNMT', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '353', 'Total Passes (away)': '712', 'Completed Passes (home)': '287', 'Completed Passes (away)': '651', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '62', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Southampton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '2', 'match_id': 'vVRt0aac', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '648', 'Total Passes (away)': '306', 'Completed Passes (home)': '539', 'Completed Passes (away)': '203', 'Tackles (home)': '15', 'Tackles (away)': '21', 'Attacks (home)': '142', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '76', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Wolves', 'away_team': 'Watford', 'home_score': '4', 'away_score': '0', 'match_id': 'IuNOzqWo', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '24', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '666', 'Total Passes (away)': '343', 'Completed Passes (home)': '586', 'Completed Passes (away)': '263', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '117', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Tottenham', 'away_team': 'Everton', 'home_score': '5', 'away_score': '0', 'match_id': 'v9bNrDnD', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '650', 'Total Passes (away)': '530', 'Completed Passes (home)': '575', 'Completed Passes (away)': '452', 'Tackles (home)': '25', 'Tackles (away)': '20', 'Attacks (home)': '103', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '1', 'match_id': 'K8iBoF2f', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '10', 'Fouls (away)': '14', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '753', 'Total Passes (away)': '331', 'Completed Passes (home)': '700', 'Completed Passes (away)': '276', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '127', 'Attacks (away)': '54', 'Dangerous Attacks (home)': '79', 'Dangerous Attacks (away)': '24'}, {'home_team': 'Watford', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '3', 'match_id': 'SOi57dPD', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '36', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '428', 'Total Passes (away)': '556', 'Completed Passes (home)': '319', 'Completed Passes (away)': '468', 'Tackles (home)': '17', 'Tackles (away)': '20', 'Attacks (home)': '104', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Liverpool', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'Qoh7neml', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '715', 'Total Passes (away)': '316', 'Completed Passes (home)': '612', 'Completed Passes (away)': '228', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '152', 'Attacks (away)': '69', 'Dangerous Attacks (home)': '72', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Aston Villa', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '0', 'match_id': 'SACWhcAK', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '353', 'Total Passes (away)': '556', 'Completed Passes (home)': '261', 'Completed Passes (away)': '464', 'Tackles (home)': '14', 'Tackles (away)': '15', 'Attacks (home)': '63', 'Attacks (away)': '159', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Burnley', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '4', 'match_id': '61BzhHPQ', 'Ball Possession (home)': '27%', 'Ball Possession (away)': '73%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '285', 'Total Passes (away)': '790', 'Completed Passes (home)': '192', 'Completed Passes (away)': '705', 'Tackles (home)': '25', 'Tackles (away)': '14', 'Attacks (home)': '94', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Newcastle', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '1', 'match_id': 'IgAEpZH0', 'Ball Possession (home)': '32%', 'Ball Possession (away)': '68%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '14', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '14', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '304', 'Total Passes (away)': '634', 'Completed Passes (home)': '191', 'Completed Passes (away)': '524', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '84', 'Attacks (away)': '173', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '89'}, {'home_team': 'Norwich', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '3', 'match_id': '0IaJqgX6', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '20', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '31', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '18', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '457', 'Total Passes (away)': '308', 'Completed Passes (home)': '352', 'Completed Passes (away)': '215', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '108', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Wolves', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '2', 'match_id': '4lFYkUgt', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '8', 'Throw-ins (home)': '16', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '561', 'Total Passes (away)': '308', 'Completed Passes (home)': '456', 'Completed Passes (away)': '227', 'Tackles (home)': '20', 'Tackles (away)': '14', 'Attacks (home)': '122', 'Attacks (away)': '83', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Leicester', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '0', 'match_id': 'neg3myYs', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '32', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '471', 'Total Passes (away)': '133', 'Completed Passes (home)': '373', 'Completed Passes (away)': '343', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '96', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Burnley', 'away_team': 'Leicester', 'home_score': '0', 'away_score': '2', 'match_id': '6qrNuVDr', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '10', 'Free Kicks (home)': '16', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '4', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '352', 'Total Passes (away)': '433', 'Completed Passes (home)': '230', 'Completed Passes (away)': '313', 'Tackles (home)': '20', 'Tackles (away)': '12', 'Attacks (home)': '116', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '37'}, {'home_team': 'West Ham', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': 'YmDSgweE', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '3', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '2', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '397', 'Total Passes (away)': '635', 'Completed Passes (home)': '312', 'Completed Passes (away)': '538', 'Tackles (home)': '15', 'Tackles (away)': '13', 'Attacks (home)': '84', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Everton', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': 'Uepzlm7e', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '12', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '320', 'Total Passes (away)': '676', 'Completed Passes (home)': '244', 'Completed Passes (away)': '597', 'Tackles (home)': '22', 'Tackles (away)': '17', 'Attacks (home)': '75', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Brighton', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '2', 'match_id': 'WK4afkUR', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '5', 'Total Passes (home)': '569', 'Total Passes (away)': '289', 'Completed Passes (home)': '499', 'Completed Passes (away)': '228', 'Tackles (home)': '17', 'Tackles (away)': '22', 'Attacks (home)': '115', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '2', 'match_id': 'xb5eeVEL', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '26', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '301', 'Total Passes (away)': '504', 'Completed Passes (home)': '199', 'Completed Passes (away)': '417', 'Tackles (home)': '9', 'Tackles (away)': '13', 'Attacks (home)': '98', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '63'}, {'home_team': 'Crystal Palace', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'j5oWlTik', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '17', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '27', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '17', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '532', 'Total Passes (away)': '364', 'Completed Passes (home)': '408', 'Completed Passes (away)': '245', 'Tackles (home)': '13', 'Tackles (away)': '12', 'Attacks (home)': '102', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Manchester Utd', 'away_team': 'Watford', 'home_score': '0', 'away_score': '0', 'match_id': 'GCrrnRy8', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '28', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '2', 'Fouls (away)': '7', 'Total Passes (home)': '676', 'Total Passes (away)': '335', 'Completed Passes (home)': '573', 'Completed Passes (away)': '235', 'Tackles (home)': '20', 'Tackles (away)': '22', 'Attacks (home)': '139', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '98', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Leeds', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '4', 'match_id': 'xMqvm7M1', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '13', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '16', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '449', 'Total Passes (away)': '474', 'Completed Passes (home)': '387', 'Completed Passes (away)': '418', 'Tackles (home)': '17', 'Tackles (away)': '10', 'Attacks (home)': '120', 'Attacks (away)': '67', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Southampton', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'Kp9OfJu8', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '27', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '501', 'Total Passes (away)': '360', 'Completed Passes (home)': '407', 'Completed Passes (away)': '272', 'Tackles (home)': '9', 'Tackles (away)': '18', 'Attacks (home)': '105', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '96', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Arsenal', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '1', 'match_id': 'Q5QWYM0b', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '11', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '508', 'Total Passes (away)': '407', 'Completed Passes (home)': '418', 'Completed Passes (away)': '302', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '161', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Liverpool', 'away_team': 'Leeds', 'home_score': '6', 'away_score': '0', 'match_id': 'OOb0zFK5', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '15', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '15', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '6', 'Throw-ins (home)': '20', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '672', 'Total Passes (away)': '378', 'Completed Passes (home)': '583', 'Completed Passes (away)': '280', 'Tackles (home)': '8', 'Tackles (away)': '21', 'Attacks (home)': '140', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Burnley', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '0', 'match_id': 'GbgXjt4g', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '15', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Total Passes (home)': '326', 'Total Passes (away)': '639', 'Completed Passes (home)': '259', 'Completed Passes (away)': '543', 'Tackles (home)': '11', 'Tackles (away)': '15', 'Attacks (home)': '105', 'Attacks (away)': '129', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '84'}, {'home_team': 'Watford', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '4', 'match_id': 'QTWZJgzP', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '456', 'Total Passes (away)': '556', 'Completed Passes (home)': '363', 'Completed Passes (away)': '469', 'Tackles (home)': '11', 'Tackles (away)': '23', 'Attacks (home)': '103', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Wolves', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'tWBncip9', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '319', 'Total Passes (away)': '566', 'Completed Passes (home)': '228', 'Completed Passes (away)': '483', 'Tackles (home)': '22', 'Tackles (away)': '22', 'Attacks (home)': '54', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Leeds', 'away_team': 'Manchester Utd', 'home_score': '2', 'away_score': '4', 'match_id': 'GnXmxj8q', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '19', 'Yellow Cards (home)': '6', 'Yellow Cards (away)': '3', 'Total Passes (home)': '409', 'Total Passes (away)': '340', 'Completed Passes (home)': '313', 'Completed Passes (away)': '247', 'Tackles (home)': '24', 'Tackles (away)': '19', 'Attacks (home)': '101', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Manchester City', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '3', 'match_id': 'x2LdzUxd', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '22', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '755', 'Total Passes (away)': '308', 'Completed Passes (home)': '681', 'Completed Passes (away)': '237', 'Tackles (home)': '13', 'Tackles (away)': '13', 'Attacks (home)': '192', 'Attacks (away)': '41', 'Dangerous Attacks (home)': '149', 'Dangerous Attacks (away)': '7'}, {'home_team': 'Arsenal', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '1', 'match_id': 'lxm9qYF9', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '562', 'Total Passes (away)': '294', 'Completed Passes (home)': '483', 'Completed Passes (away)': '203', 'Tackles (home)': '14', 'Tackles (away)': '14', 'Attacks (home)': '132', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Aston Villa', 'away_team': 'Watford', 'home_score': '0', 'away_score': '1', 'match_id': '2uiDrhVF', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '14', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '550', 'Total Passes (away)': '383', 'Completed Passes (home)': '458', 'Completed Passes (away)': '284', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '135', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '26'}, {'home_team': 'Brighton', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '3', 'match_id': 'p4tIsCpM', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '579', 'Total Passes (away)': '260', 'Completed Passes (home)': '484', 'Completed Passes (away)': '163', 'Tackles (home)': '13', 'Tackles (away)': '17', 'Attacks (home)': '104', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Crystal Palace', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '1', 'match_id': 'OfuMtWaS', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '20', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '4', 'Fouls (away)': '20', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '373', 'Total Passes (away)': '518', 'Completed Passes (home)': '287', 'Completed Passes (away)': '428', 'Tackles (home)': '22', 'Tackles (away)': '17', 'Attacks (home)': '82', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Liverpool', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '1', 'match_id': 'fwWiyANk', 'Ball Possession (home)': '70%', 'Ball Possession (away)': '30%', 'Goal Attempts (home)': '29', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '5', 'Throw-ins (home)': '11', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '697', 'Total Passes (away)': '308', 'Completed Passes (home)': '627', 'Completed Passes (away)': '215', 'Tackles (home)': '14', 'Tackles (away)': '19', 'Attacks (home)': '168', 'Attacks (away)': '56', 'Dangerous Attacks (home)': '99', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Southampton', 'away_team': 'Everton', 'home_score': '2', 'away_score': '0', 'match_id': 'lxP0Zmh2', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '11', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '12', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '506', 'Total Passes (away)': '401', 'Completed Passes (home)': '399', 'Completed Passes (away)': '277', 'Tackles (home)': '21', 'Tackles (away)': '20', 'Attacks (home)': '138', 'Attacks (away)': '126', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '43'}, {'home_team': 'West Ham', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': '2uDrbXU2', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '3', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '388', 'Total Passes (away)': '431', 'Completed Passes (home)': '294', 'Completed Passes (away)': '339', 'Tackles (home)': '11', 'Tackles (away)': '12', 'Attacks (home)': '98', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '59'}, {'home_team': 'Manchester Utd', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '0', 'match_id': 'dluJNyy0', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '512', 'Total Passes (away)': '516', 'Completed Passes (home)': '415', 'Completed Passes (away)': '433', 'Tackles (home)': '18', 'Tackles (away)': '17', 'Attacks (home)': '50', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '2', 'match_id': 'KnviTCVS', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '10', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '550', 'Total Passes (away)': '433', 'Completed Passes (home)': '450', 'Completed Passes (away)': '341', 'Tackles (home)': '21', 'Tackles (away)': '14', 'Attacks (home)': '97', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Burnley', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'UcovWEoA', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '8', 'Offsides (home)': '7', 'Offsides (away)': '3', 'Throw-ins (home)': '24', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '303', 'Total Passes (away)': '643', 'Completed Passes (home)': '198', 'Completed Passes (away)': '525', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '97', 'Attacks (away)': '129', 'Dangerous Attacks (home)': '20', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Newcastle', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '0', 'match_id': 'jVUMNjgj', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '16', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '22', 'Fouls (away)': '15', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '249', 'Total Passes (away)': '424', 'Completed Passes (home)': '170', 'Completed Passes (away)': '324', 'Tackles (home)': '15', 'Tackles (away)': '14', 'Attacks (home)': '102', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '29', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '2', 'match_id': 'GOl1ofoc', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '572', 'Total Passes (away)': '412', 'Completed Passes (home)': '470', 'Completed Passes (away)': '308', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '134', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '74', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'ULTQMA8d', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '12', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '281', 'Total Passes (away)': '707', 'Completed Passes (home)': '200', 'Completed Passes (away)': '627', 'Tackles (home)': '11', 'Tackles (away)': '5', 'Attacks (home)': '54', 'Attacks (away)': '149', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '94'}, {'home_team': 'Brentford', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '0', 'match_id': 'j7nzXfW3', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '377', 'Total Passes (away)': '504', 'Completed Passes (home)': '256', 'Completed Passes (away)': '389', 'Tackles (home)': '31', 'Tackles (away)': '17', 'Attacks (home)': '105', 'Attacks (away)': '142', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Everton', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '0', 'match_id': 'xOlnUhGM', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '34', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '344', 'Total Passes (away)': '467', 'Completed Passes (home)': '251', 'Completed Passes (away)': '371', 'Tackles (home)': '22', 'Tackles (away)': '29', 'Attacks (home)': '132', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Watford', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '2', 'match_id': 'fFm5pE03', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '315', 'Total Passes (away)': '592', 'Completed Passes (home)': '222', 'Completed Passes (away)': '469', 'Tackles (home)': '18', 'Tackles (away)': '21', 'Attacks (home)': '96', 'Attacks (away)': '139', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Manchester Utd', 'away_team': 'Southampton', 'home_score': '1', 'away_score': '1', 'match_id': 'd8VIOWwp', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '7', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '0', 'Total Passes (home)': '469', 'Total Passes (away)': '430', 'Completed Passes (home)': '380', 'Completed Passes (away)': '347', 'Tackles (home)': '14', 'Tackles (away)': '17', 'Attacks (home)': '94', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Liverpool', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '0', 'match_id': 'lMtsP6YP', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '11', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '665', 'Total Passes (away)': '362', 'Completed Passes (home)': '557', 'Completed Passes (away)': '252', 'Tackles (home)': '18', 'Tackles (away)': '23', 'Attacks (home)': '178', 'Attacks (away)': '80', 'Dangerous Attacks (home)': '101', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Wolves', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': 'rPki2qRC', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '29', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '481', 'Total Passes (away)': '356', 'Completed Passes (home)': '393', 'Completed Passes (away)': '272', 'Tackles (home)': '12', 'Tackles (away)': '17', 'Attacks (home)': '112', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Aston Villa', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '3', 'match_id': 'YXtw77Cs', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '11', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '302', 'Total Passes (away)': '456', 'Completed Passes (home)': '225', 'Completed Passes (away)': '377', 'Tackles (home)': '22', 'Tackles (away)': '3', 'Attacks (home)': '72', 'Attacks (away)': '102', 'Dangerous Attacks (home)': '38', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '0', 'match_id': 'f3J9KQts', 'Ball Possession (home)': '75%', 'Ball Possession (away)': '25%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '22', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '10', 'Throw-ins (home)': '23', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Total Passes (home)': '709', 'Total Passes (away)': '227', 'Completed Passes (home)': '624', 'Completed Passes (away)': '136', 'Tackles (home)': '7', 'Tackles (away)': '13', 'Attacks (home)': '133', 'Attacks (away)': '63', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Norwich', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'ncdr45d0', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '18', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '256', 'Total Passes (away)': '669', 'Completed Passes (home)': '155', 'Completed Passes (away)': '565', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '69', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '25', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Tottenham', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '3', 'match_id': 'AVswQnJJ', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '433', 'Total Passes (away)': '472', 'Completed Passes (home)': '338', 'Completed Passes (away)': '383', 'Tackles (home)': '18', 'Tackles (away)': '14', 'Attacks (home)': '91', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Burnley', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'hzcv5osf', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '12', 'Free Kicks (home)': '11', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '288', 'Total Passes (away)': '518', 'Completed Passes (home)': '194', 'Completed Passes (away)': '421', 'Tackles (home)': '25', 'Tackles (away)': '15', 'Attacks (home)': '114', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '25', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Newcastle', 'away_team': 'Everton', 'home_score': '3', 'away_score': '1', 'match_id': 'MFle13tJ', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '26', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '292', 'Total Passes (away)': '454', 'Completed Passes (home)': '191', 'Completed Passes (away)': '346', 'Tackles (home)': '21', 'Tackles (away)': '19', 'Attacks (home)': '101', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '31'}, {'home_team': 'West Ham', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': '000n3PB6', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '40', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '1', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '609', 'Total Passes (away)': '335', 'Completed Passes (home)': '487', 'Completed Passes (away)': '225', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '138', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Burnley', 'away_team': 'Watford', 'home_score': '0', 'away_score': '0', 'match_id': 'Agb7SQMR', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '43', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '391', 'Total Passes (away)': '359', 'Completed Passes (home)': '270', 'Completed Passes (away)': '245', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '146', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '77'}, {'home_team': 'Chelsea', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '0', 'match_id': 'hEL3h8cl', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '15', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '17', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '606', 'Total Passes (away)': '341', 'Completed Passes (home)': '526', 'Completed Passes (away)': '267', 'Tackles (home)': '15', 'Tackles (away)': '14', 'Attacks (home)': '135', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '14'}, {'home_team': 'Arsenal', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '0', 'match_id': 'ObVXcUZQ', 'Ball Possession (home)': '76%', 'Ball Possession (away)': '24%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '643', 'Total Passes (away)': '211', 'Completed Passes (home)': '564', 'Completed Passes (away)': '136', 'Tackles (home)': '7', 'Tackles (away)': '18', 'Attacks (home)': '133', 'Attacks (away)': '68', 'Dangerous Attacks (home)': '80', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '3', 'match_id': 'zwB8iSCf', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '431', 'Total Passes (away)': '576', 'Completed Passes (home)': '317', 'Completed Passes (away)': '456', 'Tackles (home)': '13', 'Tackles (away)': '7', 'Attacks (home)': '78', 'Attacks (away)': '145', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Leicester', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'MgDKlQdD', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '14', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '460', 'Total Passes (away)': '577', 'Completed Passes (home)': '352', 'Completed Passes (away)': '469', 'Tackles (home)': '18', 'Tackles (away)': '22', 'Attacks (home)': '88', 'Attacks (away)': '143', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '79'}, {'home_team': 'Southampton', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '1', 'match_id': 'x2e7CTlK', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '5', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '11', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '5', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '278', 'Total Passes (away)': '777', 'Completed Passes (home)': '193', 'Completed Passes (away)': '701', 'Tackles (home)': '20', 'Tackles (away)': '21', 'Attacks (home)': '60', 'Attacks (away)': '191', 'Dangerous Attacks (home)': '12', 'Dangerous Attacks (away)': '127'}, {'home_team': 'Brentford', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '2', 'match_id': 'tvIaglrr', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '27', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '6', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '455', 'Total Passes (away)': '477', 'Completed Passes (home)': '331', 'Completed Passes (away)': '352', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '118', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Leeds', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '1', 'match_id': 'r3EGk6s7', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '477', 'Total Passes (away)': '277', 'Completed Passes (home)': '372', 'Completed Passes (away)': '186', 'Tackles (home)': '21', 'Tackles (away)': '18', 'Attacks (home)': '111', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Manchester Utd', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'Obi3D9ZD', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '548', 'Total Passes (away)': '413', 'Completed Passes (home)': '451', 'Completed Passes (away)': '308', 'Tackles (home)': '17', 'Tackles (away)': '9', 'Attacks (home)': '136', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '1', 'match_id': 'ET9CjnS0', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '35', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '14', 'Fouls (away)': '16', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '4', 'Total Passes (home)': '337', 'Total Passes (away)': '361', 'Completed Passes (home)': '221', 'Completed Passes (away)': '256', 'Tackles (home)': '24', 'Tackles (away)': '26', 'Attacks (home)': '111', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Watford', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '3', 'match_id': 'WOfBBm4Q', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '565', 'Total Passes (away)': '259', 'Completed Passes (home)': '439', 'Completed Passes (away)': '152', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '139', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Brentford', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '3', 'match_id': 'xt0aUnhF', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '9', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '8', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '7', 'Fouls (away)': '9', 'Total Passes (home)': '405', 'Total Passes (away)': '519', 'Completed Passes (home)': '291', 'Completed Passes (away)': '411', 'Tackles (home)': '17', 'Tackles (away)': '19', 'Attacks (home)': '124', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '58'}, {'home_team': 'Leicester', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '3', 'match_id': 'nFkZNpVr', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '27', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '569', 'Total Passes (away)': '592', 'Completed Passes (home)': '491', 'Completed Passes (away)': '521', 'Tackles (home)': '17', 'Tackles (away)': '20', 'Attacks (home)': '103', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Brighton', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'Eqbz6RRm', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '6', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '438', 'Total Passes (away)': '579', 'Completed Passes (home)': '360', 'Completed Passes (away)': '503', 'Tackles (home)': '16', 'Tackles (away)': '14', 'Attacks (home)': '99', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Liverpool', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '0', 'match_id': '0KdQvkTl', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '27', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '13', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '0', 'Offsides (home)': '2', 'Offsides (away)': '7', 'Throw-ins (home)': '26', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '10', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '712', 'Total Passes (away)': '340', 'Completed Passes (home)': '589', 'Completed Passes (away)': '212', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '163', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '21'}, {'home_team': 'West Ham', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '3', 'match_id': 'SWyPaj5E', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '31', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '386', 'Total Passes (away)': '442', 'Completed Passes (home)': '269', 'Completed Passes (away)': '322', 'Tackles (home)': '22', 'Tackles (away)': '23', 'Attacks (home)': '138', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Aston Villa', 'away_team': 'Manchester Utd', 'home_score': '2', 'away_score': '2', 'match_id': 'neVlbwU9', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '8', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '540', 'Total Passes (away)': '451', 'Completed Passes (home)': '454', 'Completed Passes (away)': '368', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '124', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Newcastle', 'away_team': 'Watford', 'home_score': '1', 'away_score': '1', 'match_id': 'MZpZxTc1', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '14', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '29', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '407', 'Total Passes (away)': '381', 'Completed Passes (home)': '306', 'Completed Passes (away)': '300', 'Tackles (home)': '27', 'Tackles (away)': '19', 'Attacks (home)': '138', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Norwich', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'zwkwxmD7', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '16', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '284', 'Total Passes (away)': '435', 'Completed Passes (home)': '200', 'Completed Passes (away)': '346', 'Tackles (home)': '18', 'Tackles (away)': '18', 'Attacks (home)': '73', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '1', 'match_id': 'p8WTbAKK', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '327', 'Total Passes (away)': '437', 'Completed Passes (home)': '229', 'Completed Passes (away)': '353', 'Tackles (home)': '23', 'Tackles (away)': '10', 'Attacks (home)': '79', 'Attacks (away)': '121', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Manchester City', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '0', 'match_id': 'vBeUw9re', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '1', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '20', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '579', 'Total Passes (away)': '459', 'Completed Passes (home)': '496', 'Completed Passes (away)': '384', 'Tackles (home)': '9', 'Tackles (away)': '22', 'Attacks (home)': '121', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '70', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Brighton', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'UJKgccqG', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '569', 'Total Passes (away)': '337', 'Completed Passes (home)': '467', 'Completed Passes (away)': '234', 'Tackles (home)': '21', 'Tackles (away)': '17', 'Attacks (home)': '146', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '68', 'Dangerous Attacks (away)': '32'}, {'home_team': 'West Ham', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'hzLHrwDP', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '4', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Total Passes (home)': '550', 'Total Passes (away)': '337', 'Completed Passes (home)': '463', 'Completed Passes (away)': '246', 'Tackles (home)': '8', 'Tackles (away)': '15', 'Attacks (home)': '122', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Southampton', 'away_team': 'Brentford', 'home_score': '4', 'away_score': '1', 'match_id': '4ErRLF5C', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '407', 'Total Passes (away)': '428', 'Completed Passes (home)': '293', 'Completed Passes (away)': '310', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '115', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Manchester Utd', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': '0vTx1upi', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '487', 'Total Passes (away)': '457', 'Completed Passes (home)': '390', 'Completed Passes (away)': '372', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '129', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Chelsea', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'Yi5FqvFG', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '14', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '574', 'Total Passes (away)': '463', 'Completed Passes (home)': '473', 'Completed Passes (away)': '355', 'Tackles (home)': '19', 'Tackles (away)': '12', 'Attacks (home)': '135', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Brentford', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'f16BpKaA', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '15', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '400', 'Total Passes (away)': '491', 'Completed Passes (home)': '299', 'Completed Passes (away)': '401', 'Tackles (home)': '20', 'Tackles (away)': '11', 'Attacks (home)': '94', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Everton', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '3', 'match_id': 'SjbOsIqT', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '29', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '395', 'Total Passes (away)': '425', 'Completed Passes (home)': '285', 'Completed Passes (away)': '307', 'Tackles (home)': '17', 'Tackles (away)': '25', 'Attacks (home)': '106', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leeds', 'away_team': 'Burnley', 'home_score': '3', 'away_score': '1', 'match_id': 'pWpjwxhp', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '5', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '360', 'Total Passes (away)': '297', 'Completed Passes (home)': '255', 'Completed Passes (away)': '178', 'Tackles (home)': '18', 'Tackles (away)': '14', 'Attacks (home)': '92', 'Attacks (away)': '114', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Crystal Palace', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '3', 'match_id': 'GGfKrbUM', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '18', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '1', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '16', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '558', 'Total Passes (away)': '339', 'Completed Passes (home)': '469', 'Completed Passes (away)': '244', 'Tackles (home)': '15', 'Tackles (away)': '31', 'Attacks (home)': '111', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '78', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Watford', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '1', 'match_id': 'YiRpaJE3', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '10', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '251', 'Total Passes (away)': '715', 'Completed Passes (home)': '169', 'Completed Passes (away)': '634', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '66', 'Attacks (away)': '161', 'Dangerous Attacks (home)': '18', 'Dangerous Attacks (away)': '110'}, {'home_team': 'Arsenal', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '2', 'match_id': 'QR17o0p4', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '11', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '5', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '2', 'Total Passes (home)': '249', 'Total Passes (away)': '644', 'Completed Passes (home)': '179', 'Completed Passes (away)': '561', 'Tackles (home)': '16', 'Tackles (away)': '14', 'Attacks (home)': '98', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '58'}, {'home_team': 'Manchester Utd', 'away_team': 'Burnley', 'home_score': '3', 'away_score': '1', 'match_id': 'j99fl20o', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '20', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '10', 'Total Passes (home)': '484', 'Total Passes (away)': '355', 'Completed Passes (home)': '374', 'Completed Passes (away)': '268', 'Tackles (home)': '8', 'Tackles (away)': '14', 'Attacks (home)': '97', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Brentford', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': '8UFyYtG4', 'Ball Possession (home)': '24%', 'Ball Possession (away)': '76%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '10', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Total Passes (home)': '217', 'Total Passes (away)': '710', 'Completed Passes (home)': '136', 'Completed Passes (away)': '629', 'Tackles (home)': '17', 'Tackles (away)': '11', 'Attacks (home)': '55', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '21', 'Dangerous Attacks (away)': '68'}, {'home_team': 'Chelsea', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'MXJuX0VA', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '14', 'Fouls (away)': '7', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '430', 'Total Passes (away)': '473', 'Completed Passes (home)': '343', 'Completed Passes (away)': '378', 'Tackles (home)': '23', 'Tackles (away)': '23', 'Attacks (home)': '77', 'Attacks (away)': '60', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Leicester', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '0', 'match_id': 'x6LCPINp', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '12', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '12', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '358', 'Total Passes (away)': '587', 'Completed Passes (home)': '263', 'Completed Passes (away)': '480', 'Tackles (home)': '17', 'Tackles (away)': '15', 'Attacks (home)': '66', 'Attacks (away)': '161', 'Dangerous Attacks (home)': '33', 'Dangerous Attacks (away)': '119'}, {'home_team': 'Crystal Palace', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'GfJqWKpH', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '33', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '391', 'Total Passes (away)': '376', 'Completed Passes (home)': '303', 'Completed Passes (away)': '293', 'Tackles (home)': '26', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Southampton', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '1', 'match_id': '4CDbmMFi', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '8', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '17', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '10', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '15', 'Fouls (away)': '5', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '290', 'Total Passes (away)': '536', 'Completed Passes (home)': '201', 'Completed Passes (away)': '449', 'Tackles (home)': '15', 'Tackles (away)': '9', 'Attacks (home)': '93', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Watford', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '4', 'match_id': 'ny33ntVc', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '316', 'Total Passes (away)': '423', 'Completed Passes (home)': '208', 'Completed Passes (away)': '308', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '114', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Newcastle', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'Kjh9YhkI', 'Ball Possession (home)': '30%', 'Ball Possession (away)': '70%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '30', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '11', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '259', 'Total Passes (away)': '566', 'Completed Passes (home)': '167', 'Completed Passes (away)': '455', 'Tackles (home)': '18', 'Tackles (away)': '17', 'Attacks (home)': '85', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Brighton', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '0', 'match_id': 'jB0hxyjg', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '466', 'Total Passes (away)': '450', 'Completed Passes (home)': '374', 'Completed Passes (away)': '348', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '105', 'Attacks (away)': '105', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Aston Villa', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '3', 'match_id': 'x8dlwHzm', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '446', 'Total Passes (away)': '609', 'Completed Passes (home)': '382', 'Completed Passes (away)': '541', 'Tackles (home)': '17', 'Tackles (away)': '17', 'Attacks (home)': '101', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Manchester City', 'away_team': 'Leicester', 'home_score': '6', 'away_score': '3', 'match_id': 't0g5ZYZB', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '3', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '736', 'Total Passes (away)': '289', 'Completed Passes (home)': '693', 'Completed Passes (away)': '251', 'Tackles (home)': '7', 'Tackles (away)': '15', 'Attacks (home)': '138', 'Attacks (away)': '43', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '5', 'match_id': 'EDiDXC4O', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '314', 'Total Passes (away)': '585', 'Completed Passes (home)': '228', 'Completed Passes (away)': '493', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '81', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '0', 'match_id': 'CbAGWWJU', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '14', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '602', 'Total Passes (away)': '406', 'Completed Passes (home)': '548', 'Completed Passes (away)': '336', 'Tackles (home)': '23', 'Tackles (away)': '18', 'Attacks (home)': '126', 'Attacks (away)': '68', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '31'}, {'home_team': 'West Ham', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '3', 'match_id': 'vkOKyPGu', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '451', 'Total Passes (away)': '378', 'Completed Passes (home)': '362', 'Completed Passes (away)': '290', 'Tackles (home)': '13', 'Tackles (away)': '19', 'Attacks (home)': '114', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '70', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Tottenham', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'nwYVKZKI', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '11', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '413', 'Total Passes (away)': '519', 'Completed Passes (home)': '311', 'Completed Passes (away)': '417', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '79', 'Attacks (away)': '151', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '79'}, {'home_team': 'Newcastle', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'jBvNMej6', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '265', 'Total Passes (away)': '709', 'Completed Passes (home)': '207', 'Completed Passes (away)': '642', 'Tackles (home)': '13', 'Tackles (away)': '21', 'Attacks (home)': '70', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Wolves', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '0', 'match_id': 'fq7qvcLt', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '433', 'Total Passes (away)': '739', 'Completed Passes (home)': '328', 'Completed Passes (away)': '275', 'Tackles (home)': '17', 'Tackles (away)': '16', 'Attacks (home)': '70', 'Attacks (away)': '187', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '90'}, {'home_team': 'Leeds', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '4', 'match_id': 'IctFOHLg', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '12', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '405', 'Total Passes (away)': '392', 'Completed Passes (home)': '308', 'Completed Passes (away)': '307', 'Tackles (home)': '14', 'Tackles (away)': '13', 'Attacks (home)': '81', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Liverpool', 'away_team': 'Newcastle', 'home_score': '3', 'away_score': '1', 'match_id': 'GfsjK2U7', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '5', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '0', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '9', 'Fouls (away)': '4', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '738', 'Total Passes (away)': '258', 'Completed Passes (home)': '628', 'Completed Passes (away)': '154', 'Tackles (home)': '12', 'Tackles (away)': '24', 'Attacks (home)': '151', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '97', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Chelsea', 'away_team': 'Everton', 'home_score': '1', 'away_score': '1', 'match_id': 'x4rnLrF1', 'Ball Possession (home)': '80%', 'Ball Possession (away)': '20%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '1', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '31', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '777', 'Total Passes (away)': '194', 'Completed Passes (home)': '698', 'Completed Passes (away)': '108', 'Tackles (home)': '11', 'Tackles (away)': '19', 'Attacks (home)': '158', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '84', 'Dangerous Attacks (away)': '24'}, {'home_team': 'Arsenal', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '0', 'match_id': 'AJT2VSx9', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '501', 'Total Passes (away)': '387', 'Completed Passes (home)': '419', 'Completed Passes (away)': '314', 'Tackles (home)': '22', 'Tackles (away)': '18', 'Attacks (home)': '111', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '70', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Brighton', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': 'GWb3T67L', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '524', 'Total Passes (away)': '365', 'Completed Passes (home)': '441', 'Completed Passes (away)': '283', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '141', 'Attacks (away)': '67', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Crystal Palace', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '2', 'match_id': '8UwrMOae', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '23', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '32', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '20', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '448', 'Total Passes (away)': '299', 'Completed Passes (home)': '333', 'Completed Passes (away)': '193', 'Tackles (home)': '20', 'Tackles (away)': '24', 'Attacks (home)': '94', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Leeds', 'home_score': '7', 'away_score': '0', 'match_id': 'IaLYrn78', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '31', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '15', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '7', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '5', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '608', 'Total Passes (away)': '338', 'Completed Passes (home)': '554', 'Completed Passes (away)': '267', 'Tackles (home)': '12', 'Tackles (away)': '15', 'Attacks (home)': '169', 'Attacks (away)': '42', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Norwich', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '2', 'match_id': 'UwuvN4pk', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '10', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '451', 'Total Passes (away)': '447', 'Completed Passes (home)': '368', 'Completed Passes (away)': '365', 'Tackles (home)': '23', 'Tackles (away)': '17', 'Attacks (home)': '91', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Crystal Palace', 'away_team': 'Everton', 'home_score': '3', 'away_score': '1', 'match_id': 'r7l4AR0q', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '14', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '487', 'Total Passes (away)': '306', 'Completed Passes (home)': '406', 'Completed Passes (away)': '215', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '76', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Burnley', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '0', 'match_id': 'COcYFmwM', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '14', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '10', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '310', 'Total Passes (away)': '471', 'Completed Passes (home)': '201', 'Completed Passes (away)': '348', 'Tackles (home)': '19', 'Tackles (away)': '10', 'Attacks (home)': '109', 'Attacks (away)': '102', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Leicester', 'away_team': 'Newcastle', 'home_score': '4', 'away_score': '0', 'match_id': 'Mcm89oGk', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '16', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '400', 'Total Passes (away)': '431', 'Completed Passes (home)': '317', 'Completed Passes (away)': '343', 'Tackles (home)': '20', 'Tackles (away)': '26', 'Attacks (home)': '105', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '59'}, {'home_team': 'Norwich', 'away_team': 'Manchester Utd', 'home_score': '0', 'away_score': '1', 'match_id': 'WSUbW8N2', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '17', 'Free Kicks (away)': '1', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '17', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '440', 'Total Passes (away)': '501', 'Completed Passes (home)': '341', 'Completed Passes (away)': '409', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '93', 'Attacks (away)': '119', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Arsenal', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '0', 'match_id': 'O25LIkg3', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '507', 'Total Passes (away)': '320', 'Completed Passes (home)': '406', 'Completed Passes (away)': '234', 'Tackles (home)': '8', 'Tackles (away)': '13', 'Attacks (home)': '100', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '2', 'match_id': 'jFdxF7hS', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '18', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '15', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '415', 'Total Passes (away)': '304', 'Completed Passes (home)': '348', 'Completed Passes (away)': '223', 'Tackles (home)': '18', 'Tackles (away)': '23', 'Attacks (home)': '112', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Liverpool', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '0', 'match_id': '4MxD85Ve', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '551', 'Total Passes (away)': '329', 'Completed Passes (home)': '446', 'Completed Passes (away)': '224', 'Tackles (home)': '18', 'Tackles (away)': '21', 'Attacks (home)': '134', 'Attacks (away)': '74', 'Dangerous Attacks (home)': '79', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Manchester City', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': 'IPtH7Pp2', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '12', 'Fouls (away)': '5', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '746', 'Total Passes (away)': '310', 'Completed Passes (home)': '679', 'Completed Passes (away)': '231', 'Tackles (home)': '11', 'Tackles (away)': '14', 'Attacks (home)': '190', 'Attacks (away)': '49', 'Dangerous Attacks (home)': '110', 'Dangerous Attacks (away)': '7'}, {'home_team': 'Brentford', 'away_team': 'Watford', 'home_score': '2', 'away_score': '1', 'match_id': 'IP4PH989', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '15', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '35', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '18', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '0', 'Total Passes (home)': '472', 'Total Passes (away)': '281', 'Completed Passes (home)': '347', 'Completed Passes (away)': '160', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '141', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Everton', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '1', 'match_id': 'jkor5WO3', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '5', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '329', 'Total Passes (away)': '588', 'Completed Passes (home)': '228', 'Completed Passes (away)': '487', 'Tackles (home)': '13', 'Tackles (away)': '19', 'Attacks (home)': '107', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Aston Villa', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': '8Qew6C9c', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '24', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '25', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '359', 'Total Passes (away)': '524', 'Completed Passes (home)': '271', 'Completed Passes (away)': '424', 'Tackles (home)': '21', 'Tackles (away)': '16', 'Attacks (home)': '90', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '60'}, {'home_team': 'Leeds', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '2', 'match_id': 'Uupn4jvA', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '1', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '3', 'Total Passes (home)': '510', 'Total Passes (away)': '308', 'Completed Passes (home)': '406', 'Completed Passes (away)': '209', 'Tackles (home)': '18', 'Tackles (away)': '18', 'Attacks (home)': '109', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Manchester Utd', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': 'x6qj3AgG', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '20', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '30', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '530', 'Total Passes (away)': '331', 'Completed Passes (home)': '435', 'Completed Passes (away)': '236', 'Tackles (home)': '24', 'Tackles (away)': '23', 'Attacks (home)': '142', 'Attacks (away)': '77', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Tottenham', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'zsPQd8Wq', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '16', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '4', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '459', 'Total Passes (away)': '667', 'Completed Passes (home)': '392', 'Completed Passes (away)': '584', 'Tackles (home)': '10', 'Tackles (away)': '18', 'Attacks (home)': '95', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Watford', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '3', 'match_id': 'U3OUeSoj', 'Ball Possession (home)': '23%', 'Ball Possession (away)': '77%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '26', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '13', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '4', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '11', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '7', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '10', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '239', 'Total Passes (away)': '830', 'Completed Passes (home)': '155', 'Completed Passes (away)': '757', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '50', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '90'}, {'home_team': 'Newcastle', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '0', 'match_id': 'Gdrf2U8M', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '322', 'Total Passes (away)': '356', 'Completed Passes (home)': '213', 'Completed Passes (away)': '251', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '90', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Southampton', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'bLXb1lOS', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '36', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '12', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '314', 'Total Passes (away)': '410', 'Completed Passes (home)': '204', 'Completed Passes (away)': '282', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '92', 'Attacks (away)': '92', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Wolves', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'pC6HJVwc', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '3', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '8', 'Offsides (home)': '7', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '4', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '320', 'Total Passes (away)': '641', 'Completed Passes (home)': '219', 'Completed Passes (away)': '529', 'Tackles (home)': '21', 'Tackles (away)': '15', 'Attacks (home)': '47', 'Attacks (away)': '155', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '71'}, {'home_team': 'West Ham', 'away_team': 'Chelsea', 'home_score': '3', 'away_score': '2', 'match_id': '8fNYfn1d', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '335', 'Total Passes (away)': '588', 'Completed Passes (home)': '243', 'Completed Passes (away)': '487', 'Tackles (home)': '13', 'Tackles (away)': '6', 'Attacks (home)': '84', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '76'}, {'home_team': 'Manchester Utd', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '2', 'match_id': 'MZMKmVgT', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '11', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '9', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '431', 'Total Passes (away)': '526', 'Completed Passes (home)': '354', 'Completed Passes (away)': '438', 'Tackles (home)': '18', 'Tackles (away)': '10', 'Attacks (home)': '91', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '38', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Tottenham', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '0', 'match_id': 'fNiZ6hfi', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Total Passes (home)': '464', 'Total Passes (away)': '521', 'Completed Passes (home)': '353', 'Completed Passes (away)': '416', 'Tackles (home)': '8', 'Tackles (away)': '10', 'Attacks (home)': '101', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Aston Villa', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '2', 'match_id': '0nDdgZPi', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '10', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Total Passes (home)': '333', 'Total Passes (away)': '611', 'Completed Passes (home)': '269', 'Completed Passes (away)': '547', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '77', 'Attacks (away)': '126', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '81'}, {'home_team': 'Everton', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '4', 'match_id': 'ULH0hgub', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '18', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '11', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '16', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '270', 'Total Passes (away)': '599', 'Completed Passes (home)': '168', 'Completed Passes (away)': '489', 'Tackles (home)': '9', 'Tackles (away)': '15', 'Attacks (home)': '77', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '60'}, {'home_team': 'Southampton', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '2', 'match_id': 'tK3ir9Hj', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '14', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '358', 'Total Passes (away)': '440', 'Completed Passes (home)': '247', 'Completed Passes (away)': '328', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '124', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Watford', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '2', 'match_id': 'jy69jX9A', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '21', 'Free Kicks (away)': '21', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '0', 'Offsides (home)': '3', 'Offsides (away)': '5', 'Throw-ins (home)': '35', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '18', 'Fouls (away)': '16', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '399', 'Total Passes (away)': '422', 'Completed Passes (home)': '269', 'Completed Passes (away)': '284', 'Tackles (home)': '10', 'Tackles (away)': '12', 'Attacks (home)': '164', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '17'}, {'home_team': 'West Ham', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'lMOCkiPG', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '271', 'Total Passes (away)': '540', 'Completed Passes (home)': '197', 'Completed Passes (away)': '462', 'Tackles (home)': '13', 'Tackles (away)': '19', 'Attacks (home)': '78', 'Attacks (away)': '121', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Wolves', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '0', 'match_id': 'rqOGlBvN', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '24', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '589', 'Total Passes (away)': '306', 'Completed Passes (home)': '470', 'Completed Passes (away)': '202', 'Tackles (home)': '14', 'Tackles (away)': '19', 'Attacks (home)': '147', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '85', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Leeds', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': '8CG4iDf4', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '15', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '3', 'Total Passes (home)': '474', 'Total Passes (away)': '286', 'Completed Passes (home)': '378', 'Completed Passes (away)': '199', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '119', 'Attacks (away)': '74', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Newcastle', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '1', 'match_id': '2T4mqk2p', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Total Passes (home)': '262', 'Total Passes (away)': '569', 'Completed Passes (home)': '181', 'Completed Passes (away)': '495', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '70', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '71'}, {'home_team': 'Chelsea', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'fkhyj0Ja', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '15', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '586', 'Total Passes (away)': '318', 'Completed Passes (home)': '500', 'Completed Passes (away)': '235', 'Tackles (home)': '16', 'Tackles (away)': '21', 'Attacks (home)': '120', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '88', 'Dangerous Attacks (away)': '26'}, {'home_team': 'Brentford', 'away_team': 'Everton', 'home_score': '1', 'away_score': '0', 'match_id': '8YkPh2Zt', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '359', 'Total Passes (away)': '536', 'Completed Passes (home)': '244', 'Completed Passes (away)': '442', 'Tackles (home)': '19', 'Tackles (away)': '19', 'Attacks (home)': '89', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Leicester', 'away_team': 'Watford', 'home_score': '4', 'away_score': '2', 'match_id': 'Ei8xlvlC', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '6', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '20', 'Total Passes (home)': '410', 'Total Passes (away)': '303', 'Completed Passes (home)': '278', 'Completed Passes (away)': '176', 'Tackles (home)': '22', 'Tackles (away)': '14', 'Attacks (home)': '94', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Manchester City', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '1', 'match_id': 'KjzAVVXp', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '4', 'Throw-ins (home)': '13', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '728', 'Total Passes (away)': '330', 'Completed Passes (home)': '643', 'Completed Passes (away)': '254', 'Tackles (home)': '15', 'Tackles (away)': '16', 'Attacks (home)': '119', 'Attacks (away)': '78', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Brighton', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '0', 'match_id': 'MyfTiMlm', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '14', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '497', 'Total Passes (away)': '379', 'Completed Passes (home)': '386', 'Completed Passes (away)': '255', 'Tackles (home)': '11', 'Tackles (away)': '28', 'Attacks (home)': '145', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Crystal Palace', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '2', 'match_id': 'z19YlKY5', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '28', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '577', 'Total Passes (away)': '340', 'Completed Passes (home)': '490', 'Completed Passes (away)': '264', 'Tackles (home)': '20', 'Tackles (away)': '24', 'Attacks (home)': '126', 'Attacks (away)': '75', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Liverpool', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '0', 'match_id': '8E7tmb3I', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '14', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '613', 'Total Passes (away)': '338', 'Completed Passes (home)': '485', 'Completed Passes (away)': '230', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '115', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Norwich', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '0', 'match_id': 'MeEhfFAo', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '443', 'Total Passes (away)': '601', 'Completed Passes (home)': '369', 'Completed Passes (away)': '504', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '136', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Arsenal', 'away_team': 'Newcastle', 'home_score': '2', 'away_score': '0', 'match_id': '2iDdcrRP', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '5', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '646', 'Total Passes (away)': '328', 'Completed Passes (home)': '560', 'Completed Passes (away)': '258', 'Tackles (home)': '14', 'Tackles (away)': '13', 'Attacks (home)': '143', 'Attacks (away)': '50', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '29'}, {'home_team': 'Tottenham', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '1', 'match_id': 'dfM6zLJC', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '8', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '392', 'Total Passes (away)': '521', 'Completed Passes (home)': '312', 'Completed Passes (away)': '423', 'Tackles (home)': '18', 'Tackles (away)': '20', 'Attacks (home)': '110', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Manchester City', 'away_team': 'Everton', 'home_score': '3', 'away_score': '0', 'match_id': '8YTgwNZg', 'Ball Possession (home)': '77%', 'Ball Possession (away)': '23%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '3', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '1', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '861', 'Total Passes (away)': '247', 'Completed Passes (home)': '797', 'Completed Passes (away)': '169', 'Tackles (home)': '15', 'Tackles (away)': '18', 'Attacks (home)': '173', 'Attacks (away)': '52', 'Dangerous Attacks (home)': '91', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Liverpool', 'away_team': 'Arsenal', 'home_score': '4', 'away_score': '0', 'match_id': 'C6zouq5s', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '20', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '8', 'Throw-ins (home)': '17', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '15', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '639', 'Total Passes (away)': '384', 'Completed Passes (home)': '558', 'Completed Passes (away)': '287', 'Tackles (home)': '14', 'Tackles (away)': '18', 'Attacks (home)': '127', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '24'}, {'home_team': 'Aston Villa', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '0', 'match_id': '2XpBooSD', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '352', 'Total Passes (away)': '608', 'Completed Passes (home)': '287', 'Completed Passes (away)': '535', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Burnley', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '3', 'match_id': 'GzkFp5sK', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '15', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '14', 'Fouls (away)': '15', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '311', 'Total Passes (away)': '488', 'Completed Passes (home)': '210', 'Completed Passes (away)': '390', 'Tackles (home)': '15', 'Tackles (away)': '6', 'Attacks (home)': '103', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Newcastle', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '3', 'match_id': '2eTcxsk0', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '354', 'Total Passes (away)': '335', 'Completed Passes (home)': '247', 'Completed Passes (away)': '219', 'Tackles (home)': '13', 'Tackles (away)': '21', 'Attacks (home)': '101', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Norwich', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '1', 'match_id': 'EVW1y146', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '333', 'Total Passes (away)': '568', 'Completed Passes (home)': '223', 'Completed Passes (away)': '470', 'Tackles (home)': '16', 'Tackles (away)': '10', 'Attacks (home)': '116', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Watford', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '1', 'match_id': 'zoLAZvZI', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '5', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '335', 'Total Passes (away)': '553', 'Completed Passes (home)': '219', 'Completed Passes (away)': '430', 'Tackles (home)': '22', 'Tackles (away)': '13', 'Attacks (home)': '111', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Wolves', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'O0EhbOBJ', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '530', 'Total Passes (away)': '482', 'Completed Passes (home)': '449', 'Completed Passes (away)': '409', 'Tackles (home)': '17', 'Tackles (away)': '12', 'Attacks (home)': '99', 'Attacks (away)': '119', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'AclJqPdQ', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '374', 'Total Passes (away)': '607', 'Completed Passes (home)': '274', 'Completed Passes (away)': '516', 'Tackles (home)': '20', 'Tackles (away)': '15', 'Attacks (home)': '88', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '36'}, {'home_team': 'West Ham', 'away_team': 'Liverpool', 'home_score': '3', 'away_score': '2', 'match_id': '0S6SM1kD', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '298', 'Total Passes (away)': '683', 'Completed Passes (home)': '209', 'Completed Passes (away)': '576', 'Tackles (home)': '8', 'Tackles (away)': '6', 'Attacks (home)': '66', 'Attacks (away)': '163', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '83'}, {'home_team': 'Arsenal', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': '0pMTY7r8', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '17', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '16', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '19', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '488', 'Total Passes (away)': '316', 'Completed Passes (home)': '409', 'Completed Passes (away)': '228', 'Tackles (home)': '22', 'Tackles (away)': '15', 'Attacks (home)': '109', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '0', 'match_id': '6o5CQqjl', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '18', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '22', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '17', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '428', 'Total Passes (away)': '534', 'Completed Passes (home)': '345', 'Completed Passes (away)': '453', 'Tackles (home)': '22', 'Tackles (away)': '16', 'Attacks (home)': '120', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Leeds', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': 'lAfHP35f', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '431', 'Total Passes (away)': '356', 'Completed Passes (home)': '333', 'Completed Passes (away)': '253', 'Tackles (home)': '12', 'Tackles (away)': '33', 'Attacks (home)': '114', 'Attacks (away)': '74', 'Dangerous Attacks (home)': '68', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Brighton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': 'dCFxXoDK', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '10', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '653', 'Total Passes (away)': '325', 'Completed Passes (home)': '581', 'Completed Passes (away)': '254', 'Tackles (home)': '15', 'Tackles (away)': '23', 'Attacks (home)': '122', 'Attacks (away)': '69', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Brentford', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '2', 'match_id': 'vyLXXRcE', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '29', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '559', 'Total Passes (away)': '313', 'Completed Passes (home)': '420', 'Completed Passes (away)': '210', 'Tackles (home)': '19', 'Tackles (away)': '16', 'Attacks (home)': '158', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Chelsea', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'z3EtW5SQ', 'Ball Possession (home)': '70%', 'Ball Possession (away)': '30%', 'Goal Attempts (home)': '25', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '660', 'Total Passes (away)': '285', 'Completed Passes (home)': '565', 'Completed Passes (away)': '196', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '127', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '79', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '0', 'match_id': 'hr18RPzr', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '15', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '30', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '14', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '547', 'Total Passes (away)': '360', 'Completed Passes (home)': '445', 'Completed Passes (away)': '264', 'Tackles (home)': '28', 'Tackles (away)': '32', 'Attacks (home)': '131', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Manchester Utd', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '2', 'match_id': 'S0gLONK0', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '400', 'Total Passes (away)': '832', 'Completed Passes (home)': '322', 'Completed Passes (away)': '753', 'Tackles (home)': '18', 'Tackles (away)': '12', 'Attacks (home)': '78', 'Attacks (away)': '176', 'Dangerous Attacks (home)': '22', 'Dangerous Attacks (away)': '85'}, {'home_team': 'Southampton', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '0', 'match_id': 'My8ONsz7', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '431', 'Total Passes (away)': '327', 'Completed Passes (home)': '349', 'Completed Passes (away)': '233', 'Tackles (home)': '14', 'Tackles (away)': '22', 'Attacks (home)': '99', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Wolves', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'nsYoAO57', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '617', 'Total Passes (away)': '373', 'Completed Passes (home)': '524', 'Completed Passes (away)': '281', 'Tackles (home)': '15', 'Tackles (away)': '26', 'Attacks (home)': '143', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Aston Villa', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '4', 'match_id': 'ETcnMUb2', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '13', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '333', 'Total Passes (away)': '459', 'Completed Passes (home)': '245', 'Completed Passes (away)': '377', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '96', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Norwich', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '2', 'match_id': 'EitZCQLl', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '23', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '0', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '24', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '14', 'Fouls (away)': '23', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '310', 'Total Passes (away)': '345', 'Completed Passes (home)': '204', 'Completed Passes (away)': '251', 'Tackles (home)': '17', 'Tackles (away)': '21', 'Attacks (home)': '106', 'Attacks (away)': '78', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Tottenham', 'away_team': 'Manchester Utd', 'home_score': '0', 'away_score': '3', 'match_id': 'hruwCpye', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '1', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '570', 'Total Passes (away)': '421', 'Completed Passes (home)': '477', 'Completed Passes (away)': '334', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '141', 'Attacks (away)': '94', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Burnley', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '1', 'match_id': 'hKdjLlE8', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '22', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '356', 'Total Passes (away)': '521', 'Completed Passes (home)': '245', 'Completed Passes (away)': '392', 'Tackles (home)': '8', 'Tackles (away)': '12', 'Attacks (home)': '121', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Liverpool', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '2', 'match_id': '0p0bJSrL', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '5', 'Throw-ins (home)': '20', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '5', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '641', 'Total Passes (away)': '464', 'Completed Passes (home)': '552', 'Completed Passes (away)': '361', 'Tackles (home)': '10', 'Tackles (away)': '20', 'Attacks (home)': '127', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Manchester City', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '2', 'match_id': 'r9k3InbR', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '5', 'Throw-ins (home)': '32', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '654', 'Total Passes (away)': '319', 'Completed Passes (home)': '562', 'Completed Passes (away)': '231', 'Tackles (home)': '16', 'Tackles (away)': '21', 'Attacks (home)': '146', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '84', 'Dangerous Attacks (away)': '15'}, {'home_team': 'Newcastle', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'pIyVD66r', 'Ball Possession (home)': '21%', 'Ball Possession (away)': '79%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '16', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '11', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '14', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '198', 'Total Passes (away)': '773', 'Completed Passes (home)': '121', 'Completed Passes (away)': '687', 'Tackles (home)': '10', 'Tackles (away)': '12', 'Attacks (home)': '60', 'Attacks (away)': '153', 'Dangerous Attacks (home)': '21', 'Dangerous Attacks (away)': '93'}, {'home_team': 'Watford', 'away_team': 'Southampton', 'home_score': '0', 'away_score': '1', 'match_id': 'z7UsB4j1', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '4', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '297', 'Total Passes (away)': '482', 'Completed Passes (home)': '198', 'Completed Passes (away)': '358', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '129', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Leicester', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '2', 'match_id': 'nsdfK8TE', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '621', 'Total Passes (away)': '342', 'Completed Passes (home)': '541', 'Completed Passes (away)': '262', 'Tackles (home)': '11', 'Tackles (away)': '7', 'Attacks (home)': '115', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Manchester Utd', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '5', 'match_id': 've75FbQk', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '6', 'Yellow Cards (away)': '0', 'Total Passes (home)': '409', 'Total Passes (away)': '731', 'Completed Passes (home)': '334', 'Completed Passes (away)': '652', 'Tackles (home)': '5', 'Tackles (away)': '11', 'Attacks (home)': '78', 'Attacks (away)': '147', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Brentford', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '2', 'match_id': 'GEcGyksh', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '445', 'Total Passes (away)': '387', 'Completed Passes (home)': '340', 'Completed Passes (away)': '286', 'Tackles (home)': '20', 'Tackles (away)': '18', 'Attacks (home)': '136', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '18'}, {'home_team': 'West Ham', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '0', 'match_id': 'C85DDxe2', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '3', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '4', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '369', 'Total Passes (away)': '637', 'Completed Passes (home)': '287', 'Completed Passes (away)': '535', 'Tackles (home)': '23', 'Tackles (away)': '15', 'Attacks (home)': '93', 'Attacks (away)': '131', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Brighton', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '4', 'match_id': 'bwmLz9db', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '14', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '5', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '10', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '501', 'Total Passes (away)': '566', 'Completed Passes (home)': '413', 'Completed Passes (away)': '478', 'Tackles (home)': '16', 'Tackles (away)': '7', 'Attacks (home)': '74', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Crystal Palace', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': '63jTYnRA', 'Ball Possession (home)': '75%', 'Ball Possession (away)': '25%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '665', 'Total Passes (away)': '214', 'Completed Passes (home)': '577', 'Completed Passes (away)': '138', 'Tackles (home)': '11', 'Tackles (away)': '18', 'Attacks (home)': '152', 'Attacks (away)': '78', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Everton', 'away_team': 'Watford', 'home_score': '2', 'away_score': '5', 'match_id': 'pfkXX6tH', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '13', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '35', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '389', 'Total Passes (away)': '388', 'Completed Passes (home)': '292', 'Completed Passes (away)': '286', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '95', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '60'}, {'home_team': 'Leeds', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '1', 'match_id': 'Qi31GvBq', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '494', 'Total Passes (away)': '293', 'Completed Passes (home)': '402', 'Completed Passes (away)': '194', 'Tackles (home)': '25', 'Tackles (away)': '16', 'Attacks (home)': '143', 'Attacks (away)': '87', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Southampton', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '2', 'match_id': 'YH69EIud', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '32', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '450', 'Total Passes (away)': '284', 'Completed Passes (home)': '339', 'Completed Passes (away)': '172', 'Tackles (home)': '11', 'Tackles (away)': '12', 'Attacks (home)': '117', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Chelsea', 'away_team': 'Norwich', 'home_score': '7', 'away_score': '0', 'match_id': 'xUoPZSB4', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '13', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '15', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '14', 'Fouls (away)': '16', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '4', 'Total Passes (home)': '626', 'Total Passes (away)': '380', 'Completed Passes (home)': '567', 'Completed Passes (away)': '299', 'Tackles (home)': '19', 'Tackles (away)': '12', 'Attacks (home)': '132', 'Attacks (away)': '68', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Arsenal', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '1', 'match_id': 'ITvDxVRo', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '17', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '454', 'Total Passes (away)': '392', 'Completed Passes (home)': '366', 'Completed Passes (away)': '299', 'Tackles (home)': '13', 'Tackles (away)': '14', 'Attacks (home)': '105', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Arsenal', 'away_team': 'Everton', 'home_score': '5', 'away_score': '1', 'match_id': 'CWuae5l9', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '647', 'Total Passes (away)': '234', 'Completed Passes (home)': '583', 'Completed Passes (away)': '151', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '136', 'Attacks (away)': '55', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Brentford', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '2', 'match_id': 'QZq3fP3F', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '13', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '412', 'Total Passes (away)': '438', 'Completed Passes (home)': '318', 'Completed Passes (away)': '317', 'Tackles (home)': '12', 'Tackles (away)': '10', 'Attacks (home)': '105', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Brighton', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': '8bZ7gqJL', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '489', 'Total Passes (away)': '480', 'Completed Passes (home)': '399', 'Completed Passes (away)': '377', 'Tackles (home)': '12', 'Tackles (away)': '14', 'Attacks (home)': '100', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Burnley', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '2', 'match_id': 'nkYBh3YR', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '35', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '344', 'Total Passes (away)': '338', 'Completed Passes (home)': '238', 'Completed Passes (away)': '240', 'Tackles (home)': '11', 'Tackles (away)': '22', 'Attacks (home)': '116', 'Attacks (away)': '80', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Chelsea', 'away_team': 'Watford', 'home_score': '2', 'away_score': '1', 'match_id': 'IXKwlNtq', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Total Passes (home)': '734', 'Total Passes (away)': '281', 'Completed Passes (home)': '658', 'Completed Passes (away)': '202', 'Tackles (home)': '32', 'Tackles (away)': '25', 'Attacks (home)': '147', 'Attacks (away)': '63', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'dOJsmsdk', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '22', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '22', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '327', 'Total Passes (away)': '526', 'Completed Passes (home)': '233', 'Completed Passes (away)': '426', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '89', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '1', 'match_id': 'vm9nn1Be', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '448', 'Total Passes (away)': '425', 'Completed Passes (home)': '350', 'Completed Passes (away)': '326', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '83', 'Attacks (away)': '105', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Liverpool', 'away_team': 'Wolves', 'home_score': '3', 'away_score': '1', 'match_id': 'hjDjoLQ1', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '29', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '14', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '669', 'Total Passes (away)': '400', 'Completed Passes (home)': '590', 'Completed Passes (away)': '319', 'Tackles (home)': '21', 'Tackles (away)': '18', 'Attacks (home)': '132', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Manchester City', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '2', 'match_id': '6g1Y9432', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '30', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '601', 'Total Passes (away)': '243', 'Completed Passes (home)': '518', 'Completed Passes (away)': '163', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '151', 'Attacks (away)': '49', 'Dangerous Attacks (home)': '107', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '5', 'match_id': 'pp0x9OI8', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '13', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '402', 'Total Passes (away)': '614', 'Completed Passes (home)': '307', 'Completed Passes (away)': '537', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '78', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Aston Villa', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'UZOxr6ME', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '19', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '20', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '587', 'Total Passes (away)': '231', 'Completed Passes (home)': '529', 'Completed Passes (away)': '158', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '111', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '8tdRk9xq', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '750', 'Total Passes (away)': '370', 'Completed Passes (home)': '695', 'Completed Passes (away)': '293', 'Tackles (home)': '10', 'Tackles (away)': '18', 'Attacks (home)': '153', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '78', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Everton', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '2', 'match_id': 'YqNGxuLF', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '347', 'Total Passes (away)': '466', 'Completed Passes (home)': '244', 'Completed Passes (away)': '360', 'Tackles (home)': '25', 'Tackles (away)': '20', 'Attacks (home)': '116', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Southampton', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'SKD2jeop', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '8', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '300', 'Total Passes (away)': '734', 'Completed Passes (home)': '224', 'Completed Passes (away)': '654', 'Tackles (home)': '15', 'Tackles (away)': '18', 'Attacks (home)': '72', 'Attacks (away)': '170', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '78'}, {'home_team': 'Newcastle', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '0', 'match_id': 'IBoZ7NGH', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '6', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '325', 'Total Passes (away)': '332', 'Completed Passes (home)': '260', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '15', 'Attacks (home)': '79', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Everton', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '3', 'match_id': 'SMhMAPWb', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '11', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Red Cards (home)': '2', 'Red Cards (away)': '0', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '212', 'Total Passes (away)': '586', 'Completed Passes (home)': '143', 'Completed Passes (away)': '491', 'Tackles (home)': '5', 'Tackles (away)': '14', 'Attacks (home)': '76', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '81'}, {'home_team': 'Aston Villa', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'lWgIB5Hh', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '464', 'Total Passes (away)': '486', 'Completed Passes (home)': '377', 'Completed Passes (away)': '405', 'Tackles (home)': '20', 'Tackles (away)': '12', 'Attacks (home)': '95', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Leeds', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'ddcQ9qn5', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '394', 'Total Passes (away)': '403', 'Completed Passes (home)': '270', 'Completed Passes (away)': '296', 'Tackles (home)': '13', 'Tackles (away)': '13', 'Attacks (home)': '97', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Watford', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '5', 'match_id': '0YBAlZFd', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '351', 'Total Passes (away)': '526', 'Completed Passes (home)': '272', 'Completed Passes (away)': '447', 'Tackles (home)': '19', 'Tackles (away)': '26', 'Attacks (home)': '99', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '42'}, {'home_team': 'West Ham', 'away_team': 'Manchester City', 'home_score': '2', 'away_score': '2', 'match_id': 'vJsicRJd', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '31', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '13', 'Free Kicks (home)': '5', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '9', 'Fouls (away)': '5', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '189', 'Total Passes (away)': '696', 'Completed Passes (home)': '121', 'Completed Passes (away)': '605', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '45', 'Attacks (away)': '149', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '114'}, {'home_team': 'Wolves', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '1', 'match_id': 'I9tedoZ2', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '613', 'Total Passes (away)': '350', 'Completed Passes (home)': '513', 'Completed Passes (away)': '254', 'Tackles (home)': '8', 'Tackles (away)': '24', 'Attacks (home)': '148', 'Attacks (away)': '51', 'Dangerous Attacks (home)': '90', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Tottenham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '0', 'match_id': 'MsD6kF0j', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '647', 'Total Passes (away)': '299', 'Completed Passes (home)': '566', 'Completed Passes (away)': '221', 'Tackles (home)': '9', 'Tackles (away)': '17', 'Attacks (home)': '116', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Tottenham', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'ltwL0Wk8', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '7', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '5', 'Total Passes (home)': '561', 'Total Passes (away)': '412', 'Completed Passes (home)': '498', 'Completed Passes (away)': '346', 'Tackles (home)': '16', 'Tackles (away)': '6', 'Attacks (home)': '120', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Wolves', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '5', 'match_id': '8EwivhdK', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '9', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '2', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '383', 'Total Passes (away)': '787', 'Completed Passes (home)': '319', 'Completed Passes (away)': '721', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '49', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Leicester', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'OMqfxd7j', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Total Passes (home)': '639', 'Total Passes (away)': '354', 'Completed Passes (home)': '554', 'Completed Passes (away)': '278', 'Tackles (home)': '24', 'Tackles (away)': '19', 'Attacks (home)': '132', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Watford', 'away_team': 'Everton', 'home_score': '0', 'away_score': '0', 'match_id': 'CzGnGQ7o', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '13', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '12', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '470', 'Total Passes (away)': '488', 'Completed Passes (home)': '385', 'Completed Passes (away)': '384', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '84', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Leeds', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'QuopLCkr', 'Ball Possession (home)': '32%', 'Ball Possession (away)': '68%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '17', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '10', 'Fouls (away)': '14', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '379', 'Total Passes (away)': '817', 'Completed Passes (home)': '290', 'Completed Passes (away)': '730', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '73', 'Attacks (away)': '159', 'Dangerous Attacks (home)': '19', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Aston Villa', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '2', 'match_id': 'fgOCwL59', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '12', 'Total Passes (home)': '343', 'Total Passes (away)': '530', 'Completed Passes (home)': '258', 'Completed Passes (away)': '441', 'Tackles (home)': '12', 'Tackles (away)': '15', 'Attacks (home)': '77', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Manchester City', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '0', 'match_id': 'h409DRnt', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '14', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '12', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '712', 'Total Passes (away)': '281', 'Completed Passes (home)': '645', 'Completed Passes (away)': '216', 'Tackles (home)': '8', 'Tackles (away)': '19', 'Attacks (home)': '139', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Arsenal', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '1', 'match_id': '2a3raSXn', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '30', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '621', 'Total Passes (away)': '364', 'Completed Passes (home)': '556', 'Completed Passes (away)': '285', 'Tackles (home)': '16', 'Tackles (away)': '24', 'Attacks (home)': '152', 'Attacks (away)': '36', 'Dangerous Attacks (home)': '109', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Leicester', 'away_team': 'Everton', 'home_score': '1', 'away_score': '2', 'match_id': 'xhQagO1O', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '631', 'Total Passes (away)': '332', 'Completed Passes (home)': '545', 'Completed Passes (away)': '239', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '122', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Norwich', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '4', 'match_id': '674DCo2n', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '8', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '384', 'Total Passes (away)': '679', 'Completed Passes (home)': '328', 'Completed Passes (away)': '616', 'Tackles (home)': '12', 'Tackles (away)': '12', 'Attacks (home)': '87', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Liverpool', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '1', 'match_id': 'GrP3hrHU', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '13', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '4', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '618', 'Total Passes (away)': '338', 'Completed Passes (home)': '529', 'Completed Passes (away)': '249', 'Tackles (home)': '19', 'Tackles (away)': '20', 'Attacks (home)': '166', 'Attacks (away)': '48', 'Dangerous Attacks (home)': '99', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Brighton', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': 'OEiic62a', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '17', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '373', 'Total Passes (away)': '526', 'Completed Passes (home)': '293', 'Completed Passes (away)': '445', 'Tackles (home)': '11', 'Tackles (away)': '13', 'Attacks (home)': '90', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Brentford', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '0', 'match_id': 'tj2nbnmg', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '321', 'Total Passes (away)': '470', 'Completed Passes (home)': '219', 'Completed Passes (away)': '372', 'Tackles (home)': '10', 'Tackles (away)': '17', 'Attacks (home)': '86', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '71'}, {'home_team': 'Burnley', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '3', 'match_id': 'xIeedQH5', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '424', 'Total Passes (away)': '446', 'Completed Passes (home)': '328', 'Completed Passes (away)': '349', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '101', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Chelsea', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '2', 'match_id': 'WveaepXB', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '493', 'Total Passes (away)': '332', 'Completed Passes (home)': '399', 'Completed Passes (away)': '253', 'Tackles (home)': '20', 'Tackles (away)': '18', 'Attacks (home)': '109', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': 'AVg3f4nI', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '11', 'Fouls (away)': '18', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '533', 'Total Passes (away)': '248', 'Completed Passes (home)': '447', 'Completed Passes (away)': '170', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '112', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Manchester Utd', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '0', 'match_id': 'SnxDqmYa', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '714', 'Total Passes (away)': '376', 'Completed Passes (home)': '651', 'Completed Passes (away)': '309', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '113', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '59'}, {'home_team': 'West Ham', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '2', 'match_id': 'WGCC4lAP', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '586', 'Total Passes (away)': '454', 'Completed Passes (home)': '495', 'Completed Passes (away)': '372', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Everton', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '0', 'match_id': 'fZw5o93m', 'Ball Possession (home)': '22%', 'Ball Possession (away)': '78%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '197', 'Total Passes (away)': '720', 'Completed Passes (home)': '114', 'Completed Passes (away)': '631', 'Tackles (home)': '13', 'Tackles (away)': '18', 'Attacks (home)': '62', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Tottenham', 'away_team': 'Leicester', 'home_score': '3', 'away_score': '1', 'match_id': 'IyVPtoII', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '404', 'Total Passes (away)': '627', 'Completed Passes (home)': '313', 'Completed Passes (away)': '540', 'Tackles (home)': '20', 'Tackles (away)': '16', 'Attacks (home)': '95', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leeds', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'ldw9pTIg', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '4', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '421', 'Total Passes (away)': '617', 'Completed Passes (home)': '329', 'Completed Passes (away)': '547', 'Tackles (home)': '29', 'Tackles (away)': '9', 'Attacks (home)': '63', 'Attacks (away)': '147', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Aston Villa', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'tWZ0nkls', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '32', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '398', 'Total Passes (away)': '491', 'Completed Passes (home)': '307', 'Completed Passes (away)': '378', 'Tackles (home)': '26', 'Tackles (away)': '12', 'Attacks (home)': '109', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Southampton', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '2', 'match_id': 'OEVLsR2C', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '16', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '326', 'Total Passes (away)': '529', 'Completed Passes (home)': '217', 'Completed Passes (away)': '424', 'Tackles (home)': '23', 'Tackles (away)': '8', 'Attacks (home)': '119', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Watford', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '2', 'match_id': 'UBYTu5XO', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '334', 'Total Passes (away)': '396', 'Completed Passes (home)': '213', 'Completed Passes (away)': '263', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '106', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Wolves', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '3', 'match_id': 'YPbv08It', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '4', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '4', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '458', 'Total Passes (away)': '479', 'Completed Passes (home)': '361', 'Completed Passes (away)': '382', 'Tackles (home)': '19', 'Tackles (away)': '22', 'Attacks (home)': '85', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Newcastle', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'pOWHr7m6', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '6', 'Offsides (home)': '9', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '274', 'Total Passes (away)': '528', 'Completed Passes (home)': '177', 'Completed Passes (away)': '434', 'Tackles (home)': '19', 'Tackles (away)': '15', 'Attacks (home)': '101', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester Utd', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'zmdU831B', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '16', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '345', 'Total Passes (away)': '628', 'Completed Passes (home)': '272', 'Completed Passes (away)': '556', 'Tackles (home)': '16', 'Tackles (away)': '12', 'Attacks (home)': '57', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '76'}, {'home_team': 'Crystal Palace', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '0', 'match_id': '8xMwVmJ6', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '31', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '432', 'Total Passes (away)': '392', 'Completed Passes (home)': '324', 'Completed Passes (away)': '266', 'Tackles (home)': '13', 'Tackles (away)': '29', 'Attacks (home)': '124', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Liverpool', 'away_team': 'Everton', 'home_score': '2', 'away_score': '0', 'match_id': 'UiAnTRmJ', 'Ball Possession (home)': '83%', 'Ball Possession (away)': '17%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '29', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '787', 'Total Passes (away)': '173', 'Completed Passes (home)': '700', 'Completed Passes (away)': '95', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '170', 'Attacks (away)': '53', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Brighton', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '2', 'match_id': 'MLJRXkZm', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '21', 'Throw-ins (away)': '33', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '352', 'Total Passes (away)': '366', 'Completed Passes (home)': '229', 'Completed Passes (away)': '258', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '102', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Burnley', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '0CIVW9lf', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '324', 'Total Passes (away)': '590', 'Completed Passes (home)': '240', 'Completed Passes (away)': '488', 'Tackles (home)': '20', 'Tackles (away)': '28', 'Attacks (home)': '88', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Chelsea', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'fZHZVT30', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '12', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '710', 'Total Passes (away)': '354', 'Completed Passes (home)': '604', 'Completed Passes (away)': '253', 'Tackles (home)': '11', 'Tackles (away)': '14', 'Attacks (home)': '145', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '92', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '0', 'match_id': '4pPMYVJs', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '393', 'Total Passes (away)': '508', 'Completed Passes (home)': '297', 'Completed Passes (away)': '431', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '94', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Leicester', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '0', 'match_id': 'j1BrU7YC', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '16', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '520', 'Total Passes (away)': '289', 'Completed Passes (home)': '441', 'Completed Passes (away)': '196', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Manchester City', 'away_team': 'Watford', 'home_score': '5', 'away_score': '1', 'match_id': 'dbbUiBQJ', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '701', 'Total Passes (away)': '247', 'Completed Passes (home)': '615', 'Completed Passes (away)': '178', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '125', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '20'}, {'home_team': 'Norwich', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '3', 'match_id': 'zkcYjVuQ', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '26', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '417', 'Total Passes (away)': '506', 'Completed Passes (home)': '313', 'Completed Passes (away)': '421', 'Tackles (home)': '20', 'Tackles (away)': '15', 'Attacks (home)': '102', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Arsenal', 'away_team': 'Manchester Utd', 'home_score': '3', 'away_score': '1', 'match_id': '2ywewCBQ', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '507', 'Total Passes (away)': '412', 'Completed Passes (home)': '430', 'Completed Passes (away)': '337', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '121', 'Attacks (away)': '64', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Burnley', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '0', 'match_id': 'CzfH0o8b', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '10', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '354', 'Total Passes (away)': '479', 'Completed Passes (home)': '244', 'Completed Passes (away)': '385', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '89', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Manchester City', 'away_team': 'Brighton', 'home_score': '3', 'away_score': '0', 'match_id': '0dnUcqhH', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '667', 'Total Passes (away)': '353', 'Completed Passes (home)': '586', 'Completed Passes (away)': '260', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '125', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '4', 'match_id': 'bXkrVY0G', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '704', 'Total Passes (away)': '332', 'Completed Passes (home)': '588', 'Completed Passes (away)': '249', 'Tackles (home)': '23', 'Tackles (away)': '20', 'Attacks (home)': '122', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Everton', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': '0MoAPc6m', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '18', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '353', 'Total Passes (away)': '631', 'Completed Passes (home)': '254', 'Completed Passes (away)': '511', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '114', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Newcastle', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': 'vmoYd37N', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '347', 'Total Passes (away)': '589', 'Completed Passes (home)': '261', 'Completed Passes (away)': '490', 'Tackles (home)': '18', 'Tackles (away)': '20', 'Attacks (home)': '96', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Liverpool', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '0', 'match_id': '6ZnQbPxB', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '3', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '897', 'Total Passes (away)': '354', 'Completed Passes (home)': '799', 'Completed Passes (away)': '258', 'Tackles (home)': '15', 'Tackles (away)': '22', 'Attacks (home)': '167', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Newcastle', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'M7vgJjKf', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '264', 'Total Passes (away)': '584', 'Completed Passes (home)': '166', 'Completed Passes (away)': '485', 'Tackles (home)': '26', 'Tackles (away)': '22', 'Attacks (home)': '102', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '55'}, {'home_team': 'West Ham', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'ATKmuYtE', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '9', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '506', 'Total Passes (away)': '325', 'Completed Passes (home)': '416', 'Completed Passes (away)': '219', 'Tackles (home)': '6', 'Tackles (away)': '11', 'Attacks (home)': '96', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Manchester Utd', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '2', 'match_id': 'vqklKW4l', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '6', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Total Passes (home)': '623', 'Total Passes (away)': '386', 'Completed Passes (home)': '542', 'Completed Passes (away)': '302', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '120', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '82', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Southampton', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '0', 'match_id': '0bwcIAZ0', 'Ball Possession (home)': '24%', 'Ball Possession (away)': '76%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '12', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '213', 'Total Passes (away)': '655', 'Completed Passes (home)': '125', 'Completed Passes (away)': '580', 'Tackles (home)': '14', 'Tackles (away)': '12', 'Attacks (home)': '65', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '105'}, {'home_team': 'Watford', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '2', 'match_id': '8Ot5Gl4D', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '24', 'Throw-ins (away)': '36', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '396', 'Total Passes (away)': '382', 'Completed Passes (home)': '298', 'Completed Passes (away)': '282', 'Tackles (home)': '13', 'Tackles (away)': '22', 'Attacks (home)': '100', 'Attacks (away)': '127', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '1', 'match_id': 'UXs1HUl7', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '14', 'Fouls (away)': '10', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '480', 'Total Passes (away)': '499', 'Completed Passes (home)': '391', 'Completed Passes (away)': '419', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '79', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Manchester City', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'QLQKIJTq', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '1', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '566', 'Total Passes (away)': '468', 'Completed Passes (home)': '477', 'Completed Passes (away)': '371', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '100', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Brentford', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '0', 'match_id': 'GnyoPLjG', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '3', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '2', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '477', 'Total Passes (away)': '540', 'Completed Passes (home)': '395', 'Completed Passes (away)': '455', 'Tackles (home)': '11', 'Tackles (away)': '10', 'Attacks (home)': '81', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leicester', 'away_team': 'Crystal Palace', 'home_score': '2', 'away_score': '1', 'match_id': 'OCvgNaLS', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '511', 'Total Passes (away)': '495', 'Completed Passes (home)': '419', 'Completed Passes (away)': '413', 'Tackles (home)': '20', 'Tackles (away)': '17', 'Attacks (home)': '113', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Norwich', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': 'MmKTGcbd', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '352', 'Total Passes (away)': '412', 'Completed Passes (home)': '224', 'Completed Passes (away)': '283', 'Tackles (home)': '10', 'Tackles (away)': '23', 'Attacks (home)': '94', 'Attacks (away)': '130', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Aston Villa', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '4', 'match_id': 'YNotQ1yA', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '477', 'Total Passes (away)': '461', 'Completed Passes (home)': '415', 'Completed Passes (away)': '402', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '111', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '17'}, {'home_team': 'Arsenal', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '2', 'match_id': 'MmrxRsM3', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '18', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '19', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '512', 'Total Passes (away)': '283', 'Completed Passes (home)': '427', 'Completed Passes (away)': '200', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '121', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Southampton', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '6', 'match_id': 'zi8Busyc', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '24', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '14', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '292', 'Total Passes (away)': '748', 'Completed Passes (home)': '215', 'Completed Passes (away)': '659', 'Tackles (home)': '18', 'Tackles (away)': '29', 'Attacks (home)': '80', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Watford', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '3', 'match_id': 'Es7Fv1j3', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '40', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '380', 'Total Passes (away)': '412', 'Completed Passes (home)': '250', 'Completed Passes (away)': '263', 'Tackles (home)': '21', 'Tackles (away)': '46', 'Attacks (home)': '160', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Everton', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '0', 'match_id': 'fwzkOu6M', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '307', 'Total Passes (away)': '641', 'Completed Passes (home)': '202', 'Completed Passes (away)': '520', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '110', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '95'}, {'home_team': 'Newcastle', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': '8pGPHwqj', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '378', 'Total Passes (away)': '546', 'Completed Passes (home)': '308', 'Completed Passes (away)': '453', 'Tackles (home)': '11', 'Tackles (away)': '24', 'Attacks (home)': '89', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Burnley', 'away_team': 'Everton', 'home_score': '3', 'away_score': '2', 'match_id': 'pYadye5a', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '16', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '36', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '16', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '337', 'Total Passes (away)': '325', 'Completed Passes (home)': '216', 'Completed Passes (away)': '206', 'Tackles (home)': '11', 'Tackles (away)': '19', 'Attacks (home)': '94', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Crystal Palace', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '0', 'match_id': 'KKL6B2MG', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '293', 'Total Passes (away)': '647', 'Completed Passes (home)': '208', 'Completed Passes (away)': '551', 'Tackles (home)': '18', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '132', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Tottenham', 'away_team': 'Newcastle', 'home_score': '5', 'away_score': '1', 'match_id': 'CI0o4KEj', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '10', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '10', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '604', 'Total Passes (away)': '379', 'Completed Passes (home)': '545', 'Completed Passes (away)': '308', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '91', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '46'}, {'home_team': 'West Ham', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'lzpUS3ii', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '529', 'Total Passes (away)': '407', 'Completed Passes (home)': '432', 'Completed Passes (away)': '330', 'Tackles (home)': '11', 'Tackles (away)': '9', 'Attacks (home)': '89', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Manchester Utd', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': 'YR1s50ap', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '582', 'Total Passes (away)': '495', 'Completed Passes (home)': '501', 'Completed Passes (away)': '415', 'Tackles (home)': '10', 'Tackles (away)': '15', 'Attacks (home)': '121', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '0', 'match_id': '829eE4xb', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '31', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '18', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '30', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '478', 'Total Passes (away)': '288', 'Completed Passes (home)': '389', 'Completed Passes (away)': '189', 'Tackles (home)': '14', 'Tackles (away)': '17', 'Attacks (home)': '139', 'Attacks (away)': '59', 'Dangerous Attacks (home)': '91', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Burnley', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '2', 'match_id': 'ng8aDOi4', 'Ball Possession (home)': '23%', 'Ball Possession (away)': '77%', 'Goal Attempts (home)': '3', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '8', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '235', 'Total Passes (away)': '778', 'Completed Passes (home)': '157', 'Completed Passes (away)': '686', 'Tackles (home)': '11', 'Tackles (away)': '7', 'Attacks (home)': '70', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '16', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Chelsea', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '4', 'match_id': 'tUM2Cr7A', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Total Passes (home)': '641', 'Total Passes (away)': '260', 'Completed Passes (home)': '578', 'Completed Passes (away)': '188', 'Tackles (home)': '9', 'Tackles (away)': '19', 'Attacks (home)': '125', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Leeds', 'away_team': 'Southampton', 'home_score': '1', 'away_score': '1', 'match_id': '2qBBAMyN', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '14', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '470', 'Total Passes (away)': '360', 'Completed Passes (home)': '336', 'Completed Passes (away)': '235', 'Tackles (home)': '19', 'Tackles (away)': '9', 'Attacks (home)': '112', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Wolves', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'SQrYRN6c', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '421', 'Total Passes (away)': '441', 'Completed Passes (home)': '335', 'Completed Passes (away)': '367', 'Tackles (home)': '23', 'Tackles (away)': '17', 'Attacks (home)': '65', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Liverpool', 'away_team': 'Watford', 'home_score': '2', 'away_score': '0', 'match_id': 'GnFF9tiT', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '716', 'Total Passes (away)': '263', 'Completed Passes (home)': '598', 'Completed Passes (away)': '163', 'Tackles (home)': '23', 'Tackles (away)': '23', 'Attacks (home)': '169', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Tottenham', 'away_team': 'West Ham', 'home_score': '3', 'away_score': '1', 'match_id': 'bXR4isVp', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '604', 'Total Passes (away)': '544', 'Completed Passes (home)': '546', 'Completed Passes (away)': '483', 'Tackles (home)': '13', 'Tackles (away)': '6', 'Attacks (home)': '106', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Leicester', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '1', 'match_id': 'faqMa5N4', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '12', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '514', 'Total Passes (away)': '452', 'Completed Passes (home)': '436', 'Completed Passes (away)': '366', 'Tackles (home)': '14', 'Tackles (away)': '8', 'Attacks (home)': '101', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Aston Villa', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': 'YqeD1Rhh', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '441', 'Total Passes (away)': '521', 'Completed Passes (home)': '362', 'Completed Passes (away)': '445', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '74', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '3', 'match_id': 'QwKjFpNi', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '17', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '414', 'Total Passes (away)': '448', 'Completed Passes (home)': '326', 'Completed Passes (away)': '348', 'Tackles (home)': '15', 'Tackles (away)': '26', 'Attacks (home)': '91', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'foImVv0N', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '276', 'Total Passes (away)': '447', 'Completed Passes (home)': '183', 'Completed Passes (away)': '343', 'Tackles (home)': '18', 'Tackles (away)': '15', 'Attacks (home)': '107', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Arsenal', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'b76idBaF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '6', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '505', 'Total Passes (away)': '528', 'Completed Passes (home)': '407', 'Completed Passes (away)': '434', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '96', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Brighton', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '2', 'match_id': 'Ua8TGTNF', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '496', 'Total Passes (away)': '551', 'Completed Passes (home)': '424', 'Completed Passes (away)': '481', 'Tackles (home)': '16', 'Tackles (away)': '11', 'Attacks (home)': '126', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Crystal Palace', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '0', 'match_id': 'EuOno68B', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '14', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '6', 'Fouls (away)': '11', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '269', 'Total Passes (away)': '765', 'Completed Passes (home)': '174', 'Completed Passes (away)': '662', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '58', 'Attacks (away)': '175', 'Dangerous Attacks (home)': '22', 'Dangerous Attacks (away)': '88'}, {'home_team': 'Arsenal', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '0', 'match_id': 'nD4wkl9n', 'Ball Possession (home)': '46%', 'Ball Possession (away)': '54%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '481', 'Total Passes (away)': '564', 'Completed Passes (home)': '414', 'Completed Passes (away)': '494', 'Tackles (home)': '15', 'Tackles (away)': '17', 'Attacks (home)': '104', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Chelsea', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '0', 'match_id': 'YT6knng5', 'Ball Possession (home)': '73%', 'Ball Possession (away)': '27%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '22', 'Free Kicks (away)': '21', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '6', 'Throw-ins (home)': '15', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '17', 'Fouls (away)': '17', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '570', 'Total Passes (away)': '209', 'Completed Passes (home)': '491', 'Completed Passes (away)': '130', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '103', 'Attacks (away)': '75', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Everton', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': 'hWMjpQNH', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '356', 'Total Passes (away)': '597', 'Completed Passes (home)': '276', 'Completed Passes (away)': '518', 'Tackles (home)': '22', 'Tackles (away)': '12', 'Attacks (home)': '78', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leeds', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '1', 'match_id': 'ngMfqpwO', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '18', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '421', 'Total Passes (away)': '382', 'Completed Passes (home)': '315', 'Completed Passes (away)': '278', 'Tackles (home)': '28', 'Tackles (away)': '12', 'Attacks (home)': '100', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Southampton', 'away_team': 'Watford', 'home_score': '1', 'away_score': '2', 'match_id': 'QJi53mOu', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '498', 'Total Passes (away)': '306', 'Completed Passes (home)': '386', 'Completed Passes (away)': '203', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '108', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '34'}, {'home_team': 'West Ham', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': '4Aj927wn', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '3', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '443', 'Total Passes (away)': '501', 'Completed Passes (home)': '365', 'Completed Passes (away)': '423', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '108', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Manchester Utd', 'away_team': 'Tottenham', 'home_score': '3', 'away_score': '2', 'match_id': '0dQbr4hU', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '9', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '459', 'Total Passes (away)': '584', 'Completed Passes (home)': '391', 'Completed Passes (away)': '519', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '89', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Brentford', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': '0G8sl8Oh', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '4', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '10', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '475', 'Total Passes (away)': '373', 'Completed Passes (home)': '325', 'Completed Passes (away)': '238', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '105', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Brighton', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '2', 'match_id': 'fw8omSwa', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '15', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '430', 'Total Passes (away)': '401', 'Completed Passes (home)': '336', 'Completed Passes (away)': '313', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '91', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Leeds', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '3', 'match_id': 'zcZpUbFT', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '15', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '5', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '3', 'Total Passes (home)': '419', 'Total Passes (away)': '407', 'Completed Passes (home)': '323', 'Completed Passes (away)': '333', 'Tackles (home)': '25', 'Tackles (away)': '15', 'Attacks (home)': '124', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Norwich', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '3', 'match_id': 'dOuwdNMT', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '353', 'Total Passes (away)': '712', 'Completed Passes (home)': '287', 'Completed Passes (away)': '651', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '62', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Southampton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '2', 'match_id': 'vVRt0aac', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '648', 'Total Passes (away)': '306', 'Completed Passes (home)': '539', 'Completed Passes (away)': '203', 'Tackles (home)': '15', 'Tackles (away)': '21', 'Attacks (home)': '142', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '76', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Wolves', 'away_team': 'Watford', 'home_score': '4', 'away_score': '0', 'match_id': 'IuNOzqWo', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '24', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '666', 'Total Passes (away)': '343', 'Completed Passes (home)': '586', 'Completed Passes (away)': '263', 'Tackles (home)': '10', 'Tackles (away)': '13', 'Attacks (home)': '117', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Tottenham', 'away_team': 'Everton', 'home_score': '5', 'away_score': '0', 'match_id': 'v9bNrDnD', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '650', 'Total Passes (away)': '530', 'Completed Passes (home)': '575', 'Completed Passes (away)': '452', 'Tackles (home)': '25', 'Tackles (away)': '20', 'Attacks (home)': '103', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '1', 'match_id': 'K8iBoF2f', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '10', 'Fouls (away)': '14', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '753', 'Total Passes (away)': '331', 'Completed Passes (home)': '700', 'Completed Passes (away)': '276', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '127', 'Attacks (away)': '54', 'Dangerous Attacks (home)': '79', 'Dangerous Attacks (away)': '24'}, {'home_team': 'Watford', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '3', 'match_id': 'SOi57dPD', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '36', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '428', 'Total Passes (away)': '556', 'Completed Passes (home)': '319', 'Completed Passes (away)': '468', 'Tackles (home)': '17', 'Tackles (away)': '20', 'Attacks (home)': '104', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Liverpool', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'Qoh7neml', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '715', 'Total Passes (away)': '316', 'Completed Passes (home)': '612', 'Completed Passes (away)': '228', 'Tackles (home)': '11', 'Tackles (away)': '16', 'Attacks (home)': '152', 'Attacks (away)': '69', 'Dangerous Attacks (home)': '72', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Aston Villa', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '0', 'match_id': 'SACWhcAK', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '353', 'Total Passes (away)': '556', 'Completed Passes (home)': '261', 'Completed Passes (away)': '464', 'Tackles (home)': '14', 'Tackles (away)': '15', 'Attacks (home)': '63', 'Attacks (away)': '159', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Burnley', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '4', 'match_id': '61BzhHPQ', 'Ball Possession (home)': '27%', 'Ball Possession (away)': '73%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '285', 'Total Passes (away)': '790', 'Completed Passes (home)': '192', 'Completed Passes (away)': '705', 'Tackles (home)': '25', 'Tackles (away)': '14', 'Attacks (home)': '94', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Newcastle', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '1', 'match_id': 'IgAEpZH0', 'Ball Possession (home)': '32%', 'Ball Possession (away)': '68%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '14', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '14', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '304', 'Total Passes (away)': '634', 'Completed Passes (home)': '191', 'Completed Passes (away)': '524', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '84', 'Attacks (away)': '173', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '89'}, {'home_team': 'Norwich', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '3', 'match_id': '0IaJqgX6', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '20', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '31', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '18', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '457', 'Total Passes (away)': '308', 'Completed Passes (home)': '352', 'Completed Passes (away)': '215', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '108', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Wolves', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '2', 'match_id': '4lFYkUgt', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '8', 'Throw-ins (home)': '16', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '561', 'Total Passes (away)': '308', 'Completed Passes (home)': '456', 'Completed Passes (away)': '227', 'Tackles (home)': '20', 'Tackles (away)': '14', 'Attacks (home)': '122', 'Attacks (away)': '83', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Leicester', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '0', 'match_id': 'neg3myYs', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '32', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '471', 'Total Passes (away)': '133', 'Completed Passes (home)': '373', 'Completed Passes (away)': '343', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '96', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Burnley', 'away_team': 'Leicester', 'home_score': '0', 'away_score': '2', 'match_id': '6qrNuVDr', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '10', 'Free Kicks (home)': '16', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '4', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '352', 'Total Passes (away)': '433', 'Completed Passes (home)': '230', 'Completed Passes (away)': '313', 'Tackles (home)': '20', 'Tackles (away)': '12', 'Attacks (home)': '116', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '37'}, {'home_team': 'West Ham', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': 'YmDSgweE', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '3', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '2', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '397', 'Total Passes (away)': '635', 'Completed Passes (home)': '312', 'Completed Passes (away)': '538', 'Tackles (home)': '15', 'Tackles (away)': '13', 'Attacks (home)': '84', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Everton', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': 'Uepzlm7e', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '12', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '320', 'Total Passes (away)': '676', 'Completed Passes (home)': '244', 'Completed Passes (away)': '597', 'Tackles (home)': '22', 'Tackles (away)': '17', 'Attacks (home)': '75', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Brighton', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '2', 'match_id': 'WK4afkUR', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '5', 'Total Passes (home)': '569', 'Total Passes (away)': '289', 'Completed Passes (home)': '499', 'Completed Passes (away)': '228', 'Tackles (home)': '17', 'Tackles (away)': '22', 'Attacks (home)': '115', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '2', 'match_id': 'xb5eeVEL', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '26', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '8', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '301', 'Total Passes (away)': '504', 'Completed Passes (home)': '199', 'Completed Passes (away)': '417', 'Tackles (home)': '9', 'Tackles (away)': '13', 'Attacks (home)': '98', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '63'}, {'home_team': 'Crystal Palace', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'j5oWlTik', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '17', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '27', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '17', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '532', 'Total Passes (away)': '364', 'Completed Passes (home)': '408', 'Completed Passes (away)': '245', 'Tackles (home)': '13', 'Tackles (away)': '12', 'Attacks (home)': '102', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Manchester Utd', 'away_team': 'Watford', 'home_score': '0', 'away_score': '0', 'match_id': 'GCrrnRy8', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '28', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '2', 'Fouls (away)': '7', 'Total Passes (home)': '676', 'Total Passes (away)': '335', 'Completed Passes (home)': '573', 'Completed Passes (away)': '235', 'Tackles (home)': '20', 'Tackles (away)': '22', 'Attacks (home)': '139', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '98', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Leeds', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '4', 'match_id': 'xMqvm7M1', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '13', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '16', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '449', 'Total Passes (away)': '474', 'Completed Passes (home)': '387', 'Completed Passes (away)': '418', 'Tackles (home)': '17', 'Tackles (away)': '10', 'Attacks (home)': '120', 'Attacks (away)': '67', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Southampton', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'Kp9OfJu8', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '27', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '13', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '501', 'Total Passes (away)': '360', 'Completed Passes (home)': '407', 'Completed Passes (away)': '272', 'Tackles (home)': '9', 'Tackles (away)': '18', 'Attacks (home)': '105', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '96', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Arsenal', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '1', 'match_id': 'Q5QWYM0b', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '26', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '11', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '508', 'Total Passes (away)': '407', 'Completed Passes (home)': '418', 'Completed Passes (away)': '302', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '161', 'Attacks (away)': '70', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Liverpool', 'away_team': 'Leeds', 'home_score': '6', 'away_score': '0', 'match_id': 'OOb0zFK5', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '15', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '15', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '6', 'Throw-ins (home)': '20', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '5', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '672', 'Total Passes (away)': '378', 'Completed Passes (home)': '583', 'Completed Passes (away)': '280', 'Tackles (home)': '8', 'Tackles (away)': '21', 'Attacks (home)': '140', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '16'}, {'home_team': 'Burnley', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '0', 'match_id': 'GbgXjt4g', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '15', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Total Passes (home)': '326', 'Total Passes (away)': '639', 'Completed Passes (home)': '259', 'Completed Passes (away)': '543', 'Tackles (home)': '11', 'Tackles (away)': '15', 'Attacks (home)': '105', 'Attacks (away)': '129', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '84'}, {'home_team': 'Watford', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '4', 'match_id': 'QTWZJgzP', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '456', 'Total Passes (away)': '556', 'Completed Passes (home)': '363', 'Completed Passes (away)': '469', 'Tackles (home)': '11', 'Tackles (away)': '23', 'Attacks (home)': '103', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Wolves', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'tWBncip9', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '319', 'Total Passes (away)': '566', 'Completed Passes (home)': '228', 'Completed Passes (away)': '483', 'Tackles (home)': '22', 'Tackles (away)': '22', 'Attacks (home)': '54', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '87'}, {'home_team': 'Leeds', 'away_team': 'Manchester Utd', 'home_score': '2', 'away_score': '4', 'match_id': 'GnXmxj8q', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '19', 'Yellow Cards (home)': '6', 'Yellow Cards (away)': '3', 'Total Passes (home)': '409', 'Total Passes (away)': '340', 'Completed Passes (home)': '313', 'Completed Passes (away)': '247', 'Tackles (home)': '24', 'Tackles (away)': '19', 'Attacks (home)': '101', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Manchester City', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '3', 'match_id': 'x2LdzUxd', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '8', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '22', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '755', 'Total Passes (away)': '308', 'Completed Passes (home)': '681', 'Completed Passes (away)': '237', 'Tackles (home)': '13', 'Tackles (away)': '13', 'Attacks (home)': '192', 'Attacks (away)': '41', 'Dangerous Attacks (home)': '149', 'Dangerous Attacks (away)': '7'}, {'home_team': 'Arsenal', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '1', 'match_id': 'lxm9qYF9', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '10', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '562', 'Total Passes (away)': '294', 'Completed Passes (home)': '483', 'Completed Passes (away)': '203', 'Tackles (home)': '14', 'Tackles (away)': '14', 'Attacks (home)': '132', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Aston Villa', 'away_team': 'Watford', 'home_score': '0', 'away_score': '1', 'match_id': '2uiDrhVF', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '14', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '550', 'Total Passes (away)': '383', 'Completed Passes (home)': '458', 'Completed Passes (away)': '284', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '135', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '26'}, {'home_team': 'Brighton', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '3', 'match_id': 'p4tIsCpM', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '579', 'Total Passes (away)': '260', 'Completed Passes (home)': '484', 'Completed Passes (away)': '163', 'Tackles (home)': '13', 'Tackles (away)': '17', 'Attacks (home)': '104', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Crystal Palace', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '1', 'match_id': 'OfuMtWaS', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '20', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '4', 'Fouls (away)': '20', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '373', 'Total Passes (away)': '518', 'Completed Passes (home)': '287', 'Completed Passes (away)': '428', 'Tackles (home)': '22', 'Tackles (away)': '17', 'Attacks (home)': '82', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Liverpool', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '1', 'match_id': 'fwWiyANk', 'Ball Possession (home)': '70%', 'Ball Possession (away)': '30%', 'Goal Attempts (home)': '29', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '5', 'Throw-ins (home)': '11', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '697', 'Total Passes (away)': '308', 'Completed Passes (home)': '627', 'Completed Passes (away)': '215', 'Tackles (home)': '14', 'Tackles (away)': '19', 'Attacks (home)': '168', 'Attacks (away)': '56', 'Dangerous Attacks (home)': '99', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Southampton', 'away_team': 'Everton', 'home_score': '2', 'away_score': '0', 'match_id': 'lxP0Zmh2', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '11', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '12', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '506', 'Total Passes (away)': '401', 'Completed Passes (home)': '399', 'Completed Passes (away)': '277', 'Tackles (home)': '21', 'Tackles (away)': '20', 'Attacks (home)': '138', 'Attacks (away)': '126', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '43'}, {'home_team': 'West Ham', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': '2uDrbXU2', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '3', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '388', 'Total Passes (away)': '431', 'Completed Passes (home)': '294', 'Completed Passes (away)': '339', 'Tackles (home)': '11', 'Tackles (away)': '12', 'Attacks (home)': '98', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '59'}, {'home_team': 'Manchester Utd', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '0', 'match_id': 'dluJNyy0', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '512', 'Total Passes (away)': '516', 'Completed Passes (home)': '415', 'Completed Passes (away)': '433', 'Tackles (home)': '18', 'Tackles (away)': '17', 'Attacks (home)': '50', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '2', 'match_id': 'KnviTCVS', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '10', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '550', 'Total Passes (away)': '433', 'Completed Passes (home)': '450', 'Completed Passes (away)': '341', 'Tackles (home)': '21', 'Tackles (away)': '14', 'Attacks (home)': '97', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Burnley', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'UcovWEoA', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '8', 'Offsides (home)': '7', 'Offsides (away)': '3', 'Throw-ins (home)': '24', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '303', 'Total Passes (away)': '643', 'Completed Passes (home)': '198', 'Completed Passes (away)': '525', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '97', 'Attacks (away)': '129', 'Dangerous Attacks (home)': '20', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Newcastle', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '0', 'match_id': 'jVUMNjgj', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '16', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '22', 'Fouls (away)': '15', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '249', 'Total Passes (away)': '424', 'Completed Passes (home)': '170', 'Completed Passes (away)': '324', 'Tackles (home)': '15', 'Tackles (away)': '14', 'Attacks (home)': '102', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '29', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '2', 'match_id': 'GOl1ofoc', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '572', 'Total Passes (away)': '412', 'Completed Passes (home)': '470', 'Completed Passes (away)': '308', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '134', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '74', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'ULTQMA8d', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '12', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '281', 'Total Passes (away)': '707', 'Completed Passes (home)': '200', 'Completed Passes (away)': '627', 'Tackles (home)': '11', 'Tackles (away)': '5', 'Attacks (home)': '54', 'Attacks (away)': '149', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '94'}, {'home_team': 'Brentford', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '0', 'match_id': 'j7nzXfW3', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '377', 'Total Passes (away)': '504', 'Completed Passes (home)': '256', 'Completed Passes (away)': '389', 'Tackles (home)': '31', 'Tackles (away)': '17', 'Attacks (home)': '105', 'Attacks (away)': '142', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Everton', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '0', 'match_id': 'xOlnUhGM', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '34', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '344', 'Total Passes (away)': '467', 'Completed Passes (home)': '251', 'Completed Passes (away)': '371', 'Tackles (home)': '22', 'Tackles (away)': '29', 'Attacks (home)': '132', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Watford', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '2', 'match_id': 'fFm5pE03', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '315', 'Total Passes (away)': '592', 'Completed Passes (home)': '222', 'Completed Passes (away)': '469', 'Tackles (home)': '18', 'Tackles (away)': '21', 'Attacks (home)': '96', 'Attacks (away)': '139', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Manchester Utd', 'away_team': 'Southampton', 'home_score': '1', 'away_score': '1', 'match_id': 'd8VIOWwp', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '7', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '0', 'Total Passes (home)': '469', 'Total Passes (away)': '430', 'Completed Passes (home)': '380', 'Completed Passes (away)': '347', 'Tackles (home)': '14', 'Tackles (away)': '17', 'Attacks (home)': '94', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Liverpool', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '0', 'match_id': 'lMtsP6YP', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '11', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '665', 'Total Passes (away)': '362', 'Completed Passes (home)': '557', 'Completed Passes (away)': '252', 'Tackles (home)': '18', 'Tackles (away)': '23', 'Attacks (home)': '178', 'Attacks (away)': '80', 'Dangerous Attacks (home)': '101', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Wolves', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': 'rPki2qRC', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '29', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '481', 'Total Passes (away)': '356', 'Completed Passes (home)': '393', 'Completed Passes (away)': '272', 'Tackles (home)': '12', 'Tackles (away)': '17', 'Attacks (home)': '112', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Aston Villa', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '3', 'match_id': 'YXtw77Cs', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '11', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '302', 'Total Passes (away)': '456', 'Completed Passes (home)': '225', 'Completed Passes (away)': '377', 'Tackles (home)': '22', 'Tackles (away)': '3', 'Attacks (home)': '72', 'Attacks (away)': '102', 'Dangerous Attacks (home)': '38', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '0', 'match_id': 'f3J9KQts', 'Ball Possession (home)': '75%', 'Ball Possession (away)': '25%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '22', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '10', 'Throw-ins (home)': '23', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Total Passes (home)': '709', 'Total Passes (away)': '227', 'Completed Passes (home)': '624', 'Completed Passes (away)': '136', 'Tackles (home)': '7', 'Tackles (away)': '13', 'Attacks (home)': '133', 'Attacks (away)': '63', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Norwich', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'ncdr45d0', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '18', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '256', 'Total Passes (away)': '669', 'Completed Passes (home)': '155', 'Completed Passes (away)': '565', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '69', 'Attacks (away)': '136', 'Dangerous Attacks (home)': '25', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Tottenham', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '3', 'match_id': 'AVswQnJJ', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '433', 'Total Passes (away)': '472', 'Completed Passes (home)': '338', 'Completed Passes (away)': '383', 'Tackles (home)': '18', 'Tackles (away)': '14', 'Attacks (home)': '91', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Burnley', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'hzcv5osf', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '12', 'Free Kicks (home)': '11', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '288', 'Total Passes (away)': '518', 'Completed Passes (home)': '194', 'Completed Passes (away)': '421', 'Tackles (home)': '25', 'Tackles (away)': '15', 'Attacks (home)': '114', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '25', 'Dangerous Attacks (away)': '67'}, {'home_team': 'Newcastle', 'away_team': 'Everton', 'home_score': '3', 'away_score': '1', 'match_id': 'MFle13tJ', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '14', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '26', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '292', 'Total Passes (away)': '454', 'Completed Passes (home)': '191', 'Completed Passes (away)': '346', 'Tackles (home)': '21', 'Tackles (away)': '19', 'Attacks (home)': '101', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '31'}, {'home_team': 'West Ham', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': '000n3PB6', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '40', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '1', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '609', 'Total Passes (away)': '335', 'Completed Passes (home)': '487', 'Completed Passes (away)': '225', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '138', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '65', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Burnley', 'away_team': 'Watford', 'home_score': '0', 'away_score': '0', 'match_id': 'Agb7SQMR', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '43', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '391', 'Total Passes (away)': '359', 'Completed Passes (home)': '270', 'Completed Passes (away)': '245', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '146', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '77'}, {'home_team': 'Chelsea', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '0', 'match_id': 'hEL3h8cl', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '15', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '17', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '606', 'Total Passes (away)': '341', 'Completed Passes (home)': '526', 'Completed Passes (away)': '267', 'Tackles (home)': '15', 'Tackles (away)': '14', 'Attacks (home)': '135', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '14'}, {'home_team': 'Arsenal', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '0', 'match_id': 'ObVXcUZQ', 'Ball Possession (home)': '76%', 'Ball Possession (away)': '24%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '643', 'Total Passes (away)': '211', 'Completed Passes (home)': '564', 'Completed Passes (away)': '136', 'Tackles (home)': '7', 'Tackles (away)': '18', 'Attacks (home)': '133', 'Attacks (away)': '68', 'Dangerous Attacks (home)': '80', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '3', 'match_id': 'zwB8iSCf', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '431', 'Total Passes (away)': '576', 'Completed Passes (home)': '317', 'Completed Passes (away)': '456', 'Tackles (home)': '13', 'Tackles (away)': '7', 'Attacks (home)': '78', 'Attacks (away)': '145', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Leicester', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'MgDKlQdD', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '14', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '460', 'Total Passes (away)': '577', 'Completed Passes (home)': '352', 'Completed Passes (away)': '469', 'Tackles (home)': '18', 'Tackles (away)': '22', 'Attacks (home)': '88', 'Attacks (away)': '143', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '79'}, {'home_team': 'Southampton', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '1', 'match_id': 'x2e7CTlK', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '5', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '11', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '5', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '278', 'Total Passes (away)': '777', 'Completed Passes (home)': '193', 'Completed Passes (away)': '701', 'Tackles (home)': '20', 'Tackles (away)': '21', 'Attacks (home)': '60', 'Attacks (away)': '191', 'Dangerous Attacks (home)': '12', 'Dangerous Attacks (away)': '127'}, {'home_team': 'Brentford', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '2', 'match_id': 'tvIaglrr', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '27', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '6', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '455', 'Total Passes (away)': '477', 'Completed Passes (home)': '331', 'Completed Passes (away)': '352', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '118', 'Attacks (away)': '140', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Leeds', 'away_team': 'Newcastle', 'home_score': '0', 'away_score': '1', 'match_id': 'r3EGk6s7', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '477', 'Total Passes (away)': '277', 'Completed Passes (home)': '372', 'Completed Passes (away)': '186', 'Tackles (home)': '21', 'Tackles (away)': '18', 'Attacks (home)': '111', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Manchester Utd', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'Obi3D9ZD', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '548', 'Total Passes (away)': '413', 'Completed Passes (home)': '451', 'Completed Passes (away)': '308', 'Tackles (home)': '17', 'Tackles (away)': '9', 'Attacks (home)': '136', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '1', 'match_id': 'ET9CjnS0', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '35', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '14', 'Fouls (away)': '16', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '4', 'Total Passes (home)': '337', 'Total Passes (away)': '361', 'Completed Passes (home)': '221', 'Completed Passes (away)': '256', 'Tackles (home)': '24', 'Tackles (away)': '26', 'Attacks (home)': '111', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Watford', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '3', 'match_id': 'WOfBBm4Q', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '11', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '565', 'Total Passes (away)': '259', 'Completed Passes (home)': '439', 'Completed Passes (away)': '152', 'Tackles (home)': '14', 'Tackles (away)': '16', 'Attacks (home)': '139', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Brentford', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '3', 'match_id': 'xt0aUnhF', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '9', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '8', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '7', 'Fouls (away)': '9', 'Total Passes (home)': '405', 'Total Passes (away)': '519', 'Completed Passes (home)': '291', 'Completed Passes (away)': '411', 'Tackles (home)': '17', 'Tackles (away)': '19', 'Attacks (home)': '124', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '58'}, {'home_team': 'Leicester', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '3', 'match_id': 'nFkZNpVr', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '27', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '10', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '9', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '569', 'Total Passes (away)': '592', 'Completed Passes (home)': '491', 'Completed Passes (away)': '521', 'Tackles (home)': '17', 'Tackles (away)': '20', 'Attacks (home)': '103', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Brighton', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'Eqbz6RRm', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '6', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '438', 'Total Passes (away)': '579', 'Completed Passes (home)': '360', 'Completed Passes (away)': '503', 'Tackles (home)': '16', 'Tackles (away)': '14', 'Attacks (home)': '99', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Liverpool', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '0', 'match_id': '0KdQvkTl', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '27', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '13', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '0', 'Offsides (home)': '2', 'Offsides (away)': '7', 'Throw-ins (home)': '26', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '10', 'Fouls (home)': '6', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '712', 'Total Passes (away)': '340', 'Completed Passes (home)': '589', 'Completed Passes (away)': '212', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '163', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '21'}, {'home_team': 'West Ham', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '3', 'match_id': 'SWyPaj5E', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '31', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '386', 'Total Passes (away)': '442', 'Completed Passes (home)': '269', 'Completed Passes (away)': '322', 'Tackles (home)': '22', 'Tackles (away)': '23', 'Attacks (home)': '138', 'Attacks (away)': '88', 'Dangerous Attacks (home)': '63', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Aston Villa', 'away_team': 'Manchester Utd', 'home_score': '2', 'away_score': '2', 'match_id': 'neVlbwU9', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '8', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '540', 'Total Passes (away)': '451', 'Completed Passes (home)': '454', 'Completed Passes (away)': '368', 'Tackles (home)': '16', 'Tackles (away)': '22', 'Attacks (home)': '124', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Newcastle', 'away_team': 'Watford', 'home_score': '1', 'away_score': '1', 'match_id': 'MZpZxTc1', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '14', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '29', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '407', 'Total Passes (away)': '381', 'Completed Passes (home)': '306', 'Completed Passes (away)': '300', 'Tackles (home)': '27', 'Tackles (away)': '19', 'Attacks (home)': '138', 'Attacks (away)': '90', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Norwich', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'zwkwxmD7', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '16', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '284', 'Total Passes (away)': '435', 'Completed Passes (home)': '200', 'Completed Passes (away)': '346', 'Tackles (home)': '18', 'Tackles (away)': '18', 'Attacks (home)': '73', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '1', 'match_id': 'p8WTbAKK', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '10', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '9', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '327', 'Total Passes (away)': '437', 'Completed Passes (home)': '229', 'Completed Passes (away)': '353', 'Tackles (home)': '23', 'Tackles (away)': '10', 'Attacks (home)': '79', 'Attacks (away)': '121', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Manchester City', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '0', 'match_id': 'vBeUw9re', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '1', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '20', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '579', 'Total Passes (away)': '459', 'Completed Passes (home)': '496', 'Completed Passes (away)': '384', 'Tackles (home)': '9', 'Tackles (away)': '22', 'Attacks (home)': '121', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '70', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Brighton', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '1', 'match_id': 'UJKgccqG', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '569', 'Total Passes (away)': '337', 'Completed Passes (home)': '467', 'Completed Passes (away)': '234', 'Tackles (home)': '21', 'Tackles (away)': '17', 'Attacks (home)': '146', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '68', 'Dangerous Attacks (away)': '32'}, {'home_team': 'West Ham', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'hzLHrwDP', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '2', 'Offsides (home)': '4', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Total Passes (home)': '550', 'Total Passes (away)': '337', 'Completed Passes (home)': '463', 'Completed Passes (away)': '246', 'Tackles (home)': '8', 'Tackles (away)': '15', 'Attacks (home)': '122', 'Attacks (away)': '61', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '30'}, {'home_team': 'Southampton', 'away_team': 'Brentford', 'home_score': '4', 'away_score': '1', 'match_id': '4ErRLF5C', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '407', 'Total Passes (away)': '428', 'Completed Passes (home)': '293', 'Completed Passes (away)': '310', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '115', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Manchester Utd', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': '0vTx1upi', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '487', 'Total Passes (away)': '457', 'Completed Passes (home)': '390', 'Completed Passes (away)': '372', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '129', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Chelsea', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'Yi5FqvFG', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '14', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '574', 'Total Passes (away)': '463', 'Completed Passes (home)': '473', 'Completed Passes (away)': '355', 'Tackles (home)': '19', 'Tackles (away)': '12', 'Attacks (home)': '135', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Brentford', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'f16BpKaA', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '15', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '4', 'Throw-ins (home)': '19', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '400', 'Total Passes (away)': '491', 'Completed Passes (home)': '299', 'Completed Passes (away)': '401', 'Tackles (home)': '20', 'Tackles (away)': '11', 'Attacks (home)': '94', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Everton', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '3', 'match_id': 'SjbOsIqT', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '29', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '395', 'Total Passes (away)': '425', 'Completed Passes (home)': '285', 'Completed Passes (away)': '307', 'Tackles (home)': '17', 'Tackles (away)': '25', 'Attacks (home)': '106', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Leeds', 'away_team': 'Burnley', 'home_score': '3', 'away_score': '1', 'match_id': 'pWpjwxhp', 'Ball Possession (home)': '55%', 'Ball Possession (away)': '45%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '3', 'Offsides (home)': '5', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '360', 'Total Passes (away)': '297', 'Completed Passes (home)': '255', 'Completed Passes (away)': '178', 'Tackles (home)': '18', 'Tackles (away)': '14', 'Attacks (home)': '92', 'Attacks (away)': '114', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Crystal Palace', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '3', 'match_id': 'GGfKrbUM', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '18', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '1', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '16', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '558', 'Total Passes (away)': '339', 'Completed Passes (home)': '469', 'Completed Passes (away)': '244', 'Tackles (home)': '15', 'Tackles (away)': '31', 'Attacks (home)': '111', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '78', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Watford', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '1', 'match_id': 'YiRpaJE3', 'Ball Possession (home)': '26%', 'Ball Possession (away)': '74%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '10', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '251', 'Total Passes (away)': '715', 'Completed Passes (home)': '169', 'Completed Passes (away)': '634', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '66', 'Attacks (away)': '161', 'Dangerous Attacks (home)': '18', 'Dangerous Attacks (away)': '110'}, {'home_team': 'Arsenal', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '2', 'match_id': 'QR17o0p4', 'Ball Possession (home)': '29%', 'Ball Possession (away)': '71%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '11', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '5', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '2', 'Total Passes (home)': '249', 'Total Passes (away)': '644', 'Completed Passes (home)': '179', 'Completed Passes (away)': '561', 'Tackles (home)': '16', 'Tackles (away)': '14', 'Attacks (home)': '98', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '58'}, {'home_team': 'Manchester Utd', 'away_team': 'Burnley', 'home_score': '3', 'away_score': '1', 'match_id': 'j99fl20o', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '20', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '10', 'Total Passes (home)': '484', 'Total Passes (away)': '355', 'Completed Passes (home)': '374', 'Completed Passes (away)': '268', 'Tackles (home)': '8', 'Tackles (away)': '14', 'Attacks (home)': '97', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Brentford', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': '8UFyYtG4', 'Ball Possession (home)': '24%', 'Ball Possession (away)': '76%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '10', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Total Passes (home)': '217', 'Total Passes (away)': '710', 'Completed Passes (home)': '136', 'Completed Passes (away)': '629', 'Tackles (home)': '17', 'Tackles (away)': '11', 'Attacks (home)': '55', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '21', 'Dangerous Attacks (away)': '68'}, {'home_team': 'Chelsea', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'MXJuX0VA', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '14', 'Fouls (away)': '7', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '1', 'Total Passes (home)': '430', 'Total Passes (away)': '473', 'Completed Passes (home)': '343', 'Completed Passes (away)': '378', 'Tackles (home)': '23', 'Tackles (away)': '23', 'Attacks (home)': '77', 'Attacks (away)': '60', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Leicester', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '0', 'match_id': 'x6LCPINp', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '12', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '12', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '15', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '358', 'Total Passes (away)': '587', 'Completed Passes (home)': '263', 'Completed Passes (away)': '480', 'Tackles (home)': '17', 'Tackles (away)': '15', 'Attacks (home)': '66', 'Attacks (away)': '161', 'Dangerous Attacks (home)': '33', 'Dangerous Attacks (away)': '119'}, {'home_team': 'Crystal Palace', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'GfJqWKpH', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '33', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '391', 'Total Passes (away)': '376', 'Completed Passes (home)': '303', 'Completed Passes (away)': '293', 'Tackles (home)': '26', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Southampton', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '1', 'match_id': '4CDbmMFi', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '11', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '8', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '17', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '10', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '15', 'Fouls (away)': '5', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '290', 'Total Passes (away)': '536', 'Completed Passes (home)': '201', 'Completed Passes (away)': '449', 'Tackles (home)': '15', 'Tackles (away)': '9', 'Attacks (home)': '93', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Watford', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '4', 'match_id': 'ny33ntVc', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '25', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '316', 'Total Passes (away)': '423', 'Completed Passes (home)': '208', 'Completed Passes (away)': '308', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '114', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Newcastle', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'Kjh9YhkI', 'Ball Possession (home)': '30%', 'Ball Possession (away)': '70%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '30', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '11', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '259', 'Total Passes (away)': '566', 'Completed Passes (home)': '167', 'Completed Passes (away)': '455', 'Tackles (home)': '18', 'Tackles (away)': '17', 'Attacks (home)': '85', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Brighton', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '0', 'match_id': 'jB0hxyjg', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '466', 'Total Passes (away)': '450', 'Completed Passes (home)': '374', 'Completed Passes (away)': '348', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '105', 'Attacks (away)': '105', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Aston Villa', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '3', 'match_id': 'x8dlwHzm', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '446', 'Total Passes (away)': '609', 'Completed Passes (home)': '382', 'Completed Passes (away)': '541', 'Tackles (home)': '17', 'Tackles (away)': '17', 'Attacks (home)': '101', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Manchester City', 'away_team': 'Leicester', 'home_score': '6', 'away_score': '3', 'match_id': 't0g5ZYZB', 'Ball Possession (home)': '72%', 'Ball Possession (away)': '28%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '3', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '736', 'Total Passes (away)': '289', 'Completed Passes (home)': '693', 'Completed Passes (away)': '251', 'Tackles (home)': '7', 'Tackles (away)': '15', 'Attacks (home)': '138', 'Attacks (away)': '43', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '18'}, {'home_team': 'Norwich', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '5', 'match_id': 'EDiDXC4O', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '314', 'Total Passes (away)': '585', 'Completed Passes (home)': '228', 'Completed Passes (away)': '493', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '81', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '0', 'match_id': 'CbAGWWJU', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '14', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '602', 'Total Passes (away)': '406', 'Completed Passes (home)': '548', 'Completed Passes (away)': '336', 'Tackles (home)': '23', 'Tackles (away)': '18', 'Attacks (home)': '126', 'Attacks (away)': '68', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '31'}, {'home_team': 'West Ham', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '3', 'match_id': 'vkOKyPGu', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '451', 'Total Passes (away)': '378', 'Completed Passes (home)': '362', 'Completed Passes (away)': '290', 'Tackles (home)': '13', 'Tackles (away)': '19', 'Attacks (home)': '114', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '70', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Tottenham', 'away_team': 'Liverpool', 'home_score': '2', 'away_score': '2', 'match_id': 'nwYVKZKI', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '11', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '413', 'Total Passes (away)': '519', 'Completed Passes (home)': '311', 'Completed Passes (away)': '417', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '79', 'Attacks (away)': '151', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '79'}, {'home_team': 'Newcastle', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '4', 'match_id': 'jBvNMej6', 'Ball Possession (home)': '28%', 'Ball Possession (away)': '72%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '265', 'Total Passes (away)': '709', 'Completed Passes (home)': '207', 'Completed Passes (away)': '642', 'Tackles (home)': '13', 'Tackles (away)': '21', 'Attacks (home)': '70', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Wolves', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '0', 'match_id': 'fq7qvcLt', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '17', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '433', 'Total Passes (away)': '739', 'Completed Passes (home)': '328', 'Completed Passes (away)': '275', 'Tackles (home)': '17', 'Tackles (away)': '16', 'Attacks (home)': '70', 'Attacks (away)': '187', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '90'}, {'home_team': 'Leeds', 'away_team': 'Arsenal', 'home_score': '1', 'away_score': '4', 'match_id': 'IctFOHLg', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '12', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '27', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '405', 'Total Passes (away)': '392', 'Completed Passes (home)': '308', 'Completed Passes (away)': '307', 'Tackles (home)': '14', 'Tackles (away)': '13', 'Attacks (home)': '81', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Liverpool', 'away_team': 'Newcastle', 'home_score': '3', 'away_score': '1', 'match_id': 'GfsjK2U7', 'Ball Possession (home)': '74%', 'Ball Possession (away)': '26%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '5', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '0', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '9', 'Fouls (away)': '4', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '738', 'Total Passes (away)': '258', 'Completed Passes (home)': '628', 'Completed Passes (away)': '154', 'Tackles (home)': '12', 'Tackles (away)': '24', 'Attacks (home)': '151', 'Attacks (away)': '58', 'Dangerous Attacks (home)': '97', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Chelsea', 'away_team': 'Everton', 'home_score': '1', 'away_score': '1', 'match_id': 'x4rnLrF1', 'Ball Possession (home)': '80%', 'Ball Possession (away)': '20%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '1', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '31', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '777', 'Total Passes (away)': '194', 'Completed Passes (home)': '698', 'Completed Passes (away)': '108', 'Tackles (home)': '11', 'Tackles (away)': '19', 'Attacks (home)': '158', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '84', 'Dangerous Attacks (away)': '24'}, {'home_team': 'Arsenal', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '0', 'match_id': 'AJT2VSx9', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '9', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '501', 'Total Passes (away)': '387', 'Completed Passes (home)': '419', 'Completed Passes (away)': '314', 'Tackles (home)': '22', 'Tackles (away)': '18', 'Attacks (home)': '111', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '70', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Brighton', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': 'GWb3T67L', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '15', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '524', 'Total Passes (away)': '365', 'Completed Passes (home)': '441', 'Completed Passes (away)': '283', 'Tackles (home)': '16', 'Tackles (away)': '17', 'Attacks (home)': '141', 'Attacks (away)': '67', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Crystal Palace', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '2', 'match_id': '8UwrMOae', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '23', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '32', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '20', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '448', 'Total Passes (away)': '299', 'Completed Passes (home)': '333', 'Completed Passes (away)': '193', 'Tackles (home)': '20', 'Tackles (away)': '24', 'Attacks (home)': '94', 'Attacks (away)': '113', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester City', 'away_team': 'Leeds', 'home_score': '7', 'away_score': '0', 'match_id': 'IaLYrn78', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '31', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '15', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '7', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '7', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '5', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '608', 'Total Passes (away)': '338', 'Completed Passes (home)': '554', 'Completed Passes (away)': '267', 'Tackles (home)': '12', 'Tackles (away)': '15', 'Attacks (home)': '169', 'Attacks (away)': '42', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Norwich', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '2', 'match_id': 'UwuvN4pk', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '10', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '451', 'Total Passes (away)': '447', 'Completed Passes (home)': '368', 'Completed Passes (away)': '365', 'Tackles (home)': '23', 'Tackles (away)': '17', 'Attacks (home)': '91', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '69'}, {'home_team': 'Crystal Palace', 'away_team': 'Everton', 'home_score': '3', 'away_score': '1', 'match_id': 'r7l4AR0q', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '14', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '487', 'Total Passes (away)': '306', 'Completed Passes (home)': '406', 'Completed Passes (away)': '215', 'Tackles (home)': '15', 'Tackles (away)': '25', 'Attacks (home)': '76', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Burnley', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '0', 'match_id': 'COcYFmwM', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '10', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '14', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '10', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '310', 'Total Passes (away)': '471', 'Completed Passes (home)': '201', 'Completed Passes (away)': '348', 'Tackles (home)': '19', 'Tackles (away)': '10', 'Attacks (home)': '109', 'Attacks (away)': '102', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Leicester', 'away_team': 'Newcastle', 'home_score': '4', 'away_score': '0', 'match_id': 'Mcm89oGk', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '16', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '400', 'Total Passes (away)': '431', 'Completed Passes (home)': '317', 'Completed Passes (away)': '343', 'Tackles (home)': '20', 'Tackles (away)': '26', 'Attacks (home)': '105', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '59'}, {'home_team': 'Norwich', 'away_team': 'Manchester Utd', 'home_score': '0', 'away_score': '1', 'match_id': 'WSUbW8N2', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '17', 'Free Kicks (away)': '1', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '6', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '17', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '440', 'Total Passes (away)': '501', 'Completed Passes (home)': '341', 'Completed Passes (away)': '409', 'Tackles (home)': '9', 'Tackles (away)': '21', 'Attacks (home)': '93', 'Attacks (away)': '119', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Arsenal', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '0', 'match_id': 'O25LIkg3', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '8', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '507', 'Total Passes (away)': '320', 'Completed Passes (home)': '406', 'Completed Passes (away)': '234', 'Tackles (home)': '8', 'Tackles (away)': '13', 'Attacks (home)': '100', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Chelsea', 'away_team': 'Leeds', 'home_score': '3', 'away_score': '2', 'match_id': 'jFdxF7hS', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '18', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '15', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '415', 'Total Passes (away)': '304', 'Completed Passes (home)': '348', 'Completed Passes (away)': '223', 'Tackles (home)': '18', 'Tackles (away)': '23', 'Attacks (home)': '112', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '67', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Liverpool', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '0', 'match_id': '4MxD85Ve', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '11', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '551', 'Total Passes (away)': '329', 'Completed Passes (home)': '446', 'Completed Passes (away)': '224', 'Tackles (home)': '18', 'Tackles (away)': '21', 'Attacks (home)': '134', 'Attacks (away)': '74', 'Dangerous Attacks (home)': '79', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Manchester City', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': 'IPtH7Pp2', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '4', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '9', 'Fouls (home)': '12', 'Fouls (away)': '5', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '746', 'Total Passes (away)': '310', 'Completed Passes (home)': '679', 'Completed Passes (away)': '231', 'Tackles (home)': '11', 'Tackles (away)': '14', 'Attacks (home)': '190', 'Attacks (away)': '49', 'Dangerous Attacks (home)': '110', 'Dangerous Attacks (away)': '7'}, {'home_team': 'Brentford', 'away_team': 'Watford', 'home_score': '2', 'away_score': '1', 'match_id': 'IP4PH989'}, {'home_team': 'Everton', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '1', 'match_id': 'jkor5WO3', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '5', 'Offsides (away)': '1', 'Throw-ins (home)': '28', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '329', 'Total Passes (away)': '588', 'Completed Passes (home)': '228', 'Completed Passes (away)': '487', 'Tackles (home)': '13', 'Tackles (away)': '19', 'Attacks (home)': '107', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Aston Villa', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': '8Qew6C9c', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '24', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '19', 'Throw-ins (away)': '29', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '25', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '359', 'Total Passes (away)': '524', 'Completed Passes (home)': '271', 'Completed Passes (away)': '424', 'Tackles (home)': '21', 'Tackles (away)': '16', 'Attacks (home)': '90', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '60'}, {'home_team': 'Leeds', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '2', 'match_id': 'Uupn4jvA', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '1', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '3', 'Total Passes (home)': '510', 'Total Passes (away)': '308', 'Completed Passes (home)': '406', 'Completed Passes (away)': '209', 'Tackles (home)': '18', 'Tackles (away)': '18', 'Attacks (home)': '109', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Manchester Utd', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': 'x6qj3AgG', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '20', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '6', 'Offsides (home)': '3', 'Offsides (away)': '0', 'Throw-ins (home)': '30', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '16', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '530', 'Total Passes (away)': '331', 'Completed Passes (home)': '435', 'Completed Passes (away)': '236', 'Tackles (home)': '24', 'Tackles (away)': '23', 'Attacks (home)': '142', 'Attacks (away)': '77', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '28'}, {'home_team': 'Tottenham', 'away_team': 'Norwich', 'home_score': '3', 'away_score': '0', 'match_id': 'zsPQd8Wq', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '16', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '4', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '459', 'Total Passes (away)': '667', 'Completed Passes (home)': '392', 'Completed Passes (away)': '584', 'Tackles (home)': '10', 'Tackles (away)': '18', 'Attacks (home)': '95', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '54'}, {'home_team': 'Watford', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '3', 'match_id': 'U3OUeSoj', 'Ball Possession (home)': '23%', 'Ball Possession (away)': '77%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '26', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '13', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '4', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '11', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '7', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '10', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '7', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '239', 'Total Passes (away)': '830', 'Completed Passes (home)': '155', 'Completed Passes (away)': '757', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '50', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '28', 'Dangerous Attacks (away)': '90'}, {'home_team': 'Newcastle', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '0', 'match_id': 'Gdrf2U8M', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '322', 'Total Passes (away)': '356', 'Completed Passes (home)': '213', 'Completed Passes (away)': '251', 'Tackles (home)': '13', 'Tackles (away)': '15', 'Attacks (home)': '90', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '36', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Southampton', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'bLXb1lOS', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '36', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '12', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '2', 'Total Passes (home)': '314', 'Total Passes (away)': '410', 'Completed Passes (home)': '204', 'Completed Passes (away)': '282', 'Tackles (home)': '12', 'Tackles (away)': '21', 'Attacks (home)': '92', 'Attacks (away)': '92', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Wolves', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '1', 'match_id': 'pC6HJVwc', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '3', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '8', 'Offsides (home)': '7', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '4', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '320', 'Total Passes (away)': '641', 'Completed Passes (home)': '219', 'Completed Passes (away)': '529', 'Tackles (home)': '21', 'Tackles (away)': '15', 'Attacks (home)': '47', 'Attacks (away)': '155', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '71'}, {'home_team': 'West Ham', 'away_team': 'Chelsea', 'home_score': '3', 'away_score': '2', 'match_id': '8fNYfn1d', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '20', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '335', 'Total Passes (away)': '588', 'Completed Passes (home)': '243', 'Completed Passes (away)': '487', 'Tackles (home)': '13', 'Tackles (away)': '6', 'Attacks (home)': '84', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '76'}, {'home_team': 'Manchester Utd', 'away_team': 'Arsenal', 'home_score': '3', 'away_score': '2', 'match_id': 'MZMKmVgT', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '11', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '9', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '431', 'Total Passes (away)': '526', 'Completed Passes (home)': '354', 'Completed Passes (away)': '438', 'Tackles (home)': '18', 'Tackles (away)': '10', 'Attacks (home)': '91', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '38', 'Dangerous Attacks (away)': '61'}, {'home_team': 'Tottenham', 'away_team': 'Brentford', 'home_score': '2', 'away_score': '0', 'match_id': 'fNiZ6hfi', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Total Passes (home)': '464', 'Total Passes (away)': '521', 'Completed Passes (home)': '353', 'Completed Passes (away)': '416', 'Tackles (home)': '8', 'Tackles (away)': '10', 'Attacks (home)': '101', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Aston Villa', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '2', 'match_id': '0nDdgZPi', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '10', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '12', 'Total Passes (home)': '333', 'Total Passes (away)': '611', 'Completed Passes (home)': '269', 'Completed Passes (away)': '547', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '77', 'Attacks (away)': '126', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '81'}, {'home_team': 'Everton', 'away_team': 'Liverpool', 'home_score': '1', 'away_score': '4', 'match_id': 'ULH0hgub', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '18', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '11', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '16', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '270', 'Total Passes (away)': '599', 'Completed Passes (home)': '168', 'Completed Passes (away)': '489', 'Tackles (home)': '9', 'Tackles (away)': '15', 'Attacks (home)': '77', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '60'}, {'home_team': 'Southampton', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '2', 'match_id': 'tK3ir9Hj', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '21', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '14', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '358', 'Total Passes (away)': '440', 'Completed Passes (home)': '247', 'Completed Passes (away)': '328', 'Tackles (home)': '12', 'Tackles (away)': '11', 'Attacks (home)': '124', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Watford', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '2', 'match_id': 'jy69jX9A', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '21', 'Free Kicks (away)': '21', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '0', 'Offsides (home)': '3', 'Offsides (away)': '5', 'Throw-ins (home)': '35', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '18', 'Fouls (away)': '16', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '399', 'Total Passes (away)': '422', 'Completed Passes (home)': '269', 'Completed Passes (away)': '284', 'Tackles (home)': '10', 'Tackles (away)': '12', 'Attacks (home)': '164', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '73', 'Dangerous Attacks (away)': '17'}, {'home_team': 'West Ham', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'lMOCkiPG', 'Ball Possession (home)': '34%', 'Ball Possession (away)': '66%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '271', 'Total Passes (away)': '540', 'Completed Passes (home)': '197', 'Completed Passes (away)': '462', 'Tackles (home)': '13', 'Tackles (away)': '19', 'Attacks (home)': '78', 'Attacks (away)': '121', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '49'}, {'home_team': 'Wolves', 'away_team': 'Burnley', 'home_score': '0', 'away_score': '0', 'match_id': 'rqOGlBvN', 'Ball Possession (home)': '65%', 'Ball Possession (away)': '35%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '24', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '589', 'Total Passes (away)': '306', 'Completed Passes (home)': '470', 'Completed Passes (away)': '202', 'Tackles (home)': '14', 'Tackles (away)': '19', 'Attacks (home)': '147', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '85', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Leeds', 'away_team': 'Crystal Palace', 'home_score': '1', 'away_score': '0', 'match_id': '8CG4iDf4', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '9', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '15', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '3', 'Total Passes (home)': '474', 'Total Passes (away)': '286', 'Completed Passes (home)': '378', 'Completed Passes (away)': '199', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '119', 'Attacks (away)': '74', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Newcastle', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '1', 'match_id': '2T4mqk2p', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Total Passes (home)': '262', 'Total Passes (away)': '569', 'Completed Passes (home)': '181', 'Completed Passes (away)': '495', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '70', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '23', 'Dangerous Attacks (away)': '71'}, {'home_team': 'Chelsea', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'fkhyj0Ja', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '15', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '13', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '586', 'Total Passes (away)': '318', 'Completed Passes (home)': '500', 'Completed Passes (away)': '235', 'Tackles (home)': '16', 'Tackles (away)': '21', 'Attacks (home)': '120', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '88', 'Dangerous Attacks (away)': '26'}, {'home_team': 'Brentford', 'away_team': 'Everton', 'home_score': '1', 'away_score': '0', 'match_id': '8YkPh2Zt', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '23', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '359', 'Total Passes (away)': '536', 'Completed Passes (home)': '244', 'Completed Passes (away)': '442', 'Tackles (home)': '19', 'Tackles (away)': '19', 'Attacks (home)': '89', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '73'}, {'home_team': 'Leicester', 'away_team': 'Watford', 'home_score': '4', 'away_score': '2', 'match_id': 'Ei8xlvlC', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '22', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '6', 'Offsides (home)': '5', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '20', 'Total Passes (home)': '410', 'Total Passes (away)': '303', 'Completed Passes (home)': '278', 'Completed Passes (away)': '176', 'Tackles (home)': '22', 'Tackles (away)': '14', 'Attacks (home)': '94', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '31', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Manchester City', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '1', 'match_id': 'KjzAVVXp', 'Ball Possession (home)': '69%', 'Ball Possession (away)': '31%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '4', 'Offsides (away)': '4', 'Throw-ins (home)': '13', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '7', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '728', 'Total Passes (away)': '330', 'Completed Passes (home)': '643', 'Completed Passes (away)': '254', 'Tackles (home)': '15', 'Tackles (away)': '16', 'Attacks (home)': '119', 'Attacks (away)': '78', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Brighton', 'away_team': 'Leeds', 'home_score': '0', 'away_score': '0', 'match_id': 'MyfTiMlm', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '14', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '497', 'Total Passes (away)': '379', 'Completed Passes (home)': '386', 'Completed Passes (away)': '255', 'Tackles (home)': '11', 'Tackles (away)': '28', 'Attacks (home)': '145', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Crystal Palace', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '2', 'match_id': 'z19YlKY5', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '28', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '577', 'Total Passes (away)': '340', 'Completed Passes (home)': '490', 'Completed Passes (away)': '264', 'Tackles (home)': '20', 'Tackles (away)': '24', 'Attacks (home)': '126', 'Attacks (away)': '75', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Liverpool', 'away_team': 'Southampton', 'home_score': '4', 'away_score': '0', 'match_id': '8E7tmb3I', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '23', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '14', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '613', 'Total Passes (away)': '338', 'Completed Passes (home)': '485', 'Completed Passes (away)': '230', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '115', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Norwich', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '0', 'match_id': 'MeEhfFAo', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '443', 'Total Passes (away)': '601', 'Completed Passes (home)': '369', 'Completed Passes (away)': '504', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '136', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Arsenal', 'away_team': 'Newcastle', 'home_score': '2', 'away_score': '0', 'match_id': '2iDdcrRP', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '5', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '646', 'Total Passes (away)': '328', 'Completed Passes (home)': '560', 'Completed Passes (away)': '258', 'Tackles (home)': '14', 'Tackles (away)': '13', 'Attacks (home)': '143', 'Attacks (away)': '50', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '29'}, {'home_team': 'Tottenham', 'away_team': 'Leeds', 'home_score': '2', 'away_score': '1', 'match_id': 'dfM6zLJC', 'Ball Possession (home)': '43%', 'Ball Possession (away)': '57%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '8', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '392', 'Total Passes (away)': '521', 'Completed Passes (home)': '312', 'Completed Passes (away)': '423', 'Tackles (home)': '18', 'Tackles (away)': '20', 'Attacks (home)': '110', 'Attacks (away)': '107', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Manchester City', 'away_team': 'Everton', 'home_score': '3', 'away_score': '0', 'match_id': '8YTgwNZg', 'Ball Possession (home)': '77%', 'Ball Possession (away)': '23%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '8', 'Free Kicks (away)': '3', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '1', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '13', 'Throw-ins (away)': '9', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '861', 'Total Passes (away)': '247', 'Completed Passes (home)': '797', 'Completed Passes (away)': '169', 'Tackles (home)': '15', 'Tackles (away)': '18', 'Attacks (home)': '173', 'Attacks (away)': '52', 'Dangerous Attacks (home)': '91', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Liverpool', 'away_team': 'Arsenal', 'home_score': '4', 'away_score': '0', 'match_id': 'C6zouq5s', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '20', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '8', 'Throw-ins (home)': '17', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '15', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '639', 'Total Passes (away)': '384', 'Completed Passes (home)': '558', 'Completed Passes (away)': '287', 'Tackles (home)': '14', 'Tackles (away)': '18', 'Attacks (home)': '127', 'Attacks (away)': '76', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '24'}, {'home_team': 'Aston Villa', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '0', 'match_id': '2XpBooSD', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '352', 'Total Passes (away)': '608', 'Completed Passes (home)': '287', 'Completed Passes (away)': '535', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '71', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Burnley', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '3', 'match_id': 'GzkFp5sK', 'Ball Possession (home)': '40%', 'Ball Possession (away)': '60%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '15', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '20', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '14', 'Fouls (away)': '15', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '311', 'Total Passes (away)': '488', 'Completed Passes (home)': '210', 'Completed Passes (away)': '390', 'Tackles (home)': '15', 'Tackles (away)': '6', 'Attacks (home)': '103', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Newcastle', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '3', 'match_id': '2eTcxsk0', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '354', 'Total Passes (away)': '335', 'Completed Passes (home)': '247', 'Completed Passes (away)': '219', 'Tackles (home)': '13', 'Tackles (away)': '21', 'Attacks (home)': '101', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '60', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Norwich', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '1', 'match_id': 'EVW1y146', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '10', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '333', 'Total Passes (away)': '568', 'Completed Passes (home)': '223', 'Completed Passes (away)': '470', 'Tackles (home)': '16', 'Tackles (away)': '10', 'Attacks (home)': '116', 'Attacks (away)': '123', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Watford', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '1', 'match_id': 'zoLAZvZI', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '5', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '335', 'Total Passes (away)': '553', 'Completed Passes (home)': '219', 'Completed Passes (away)': '430', 'Tackles (home)': '22', 'Tackles (away)': '13', 'Attacks (home)': '111', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Wolves', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '0', 'match_id': 'O0EhbOBJ', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '530', 'Total Passes (away)': '482', 'Completed Passes (home)': '449', 'Completed Passes (away)': '409', 'Tackles (home)': '17', 'Tackles (away)': '12', 'Attacks (home)': '99', 'Attacks (away)': '119', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Leicester', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'AclJqPdQ', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '4', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '30', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '8', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '374', 'Total Passes (away)': '607', 'Completed Passes (home)': '274', 'Completed Passes (away)': '516', 'Tackles (home)': '20', 'Tackles (away)': '15', 'Attacks (home)': '88', 'Attacks (away)': '128', 'Dangerous Attacks (home)': '24', 'Dangerous Attacks (away)': '36'}, {'home_team': 'West Ham', 'away_team': 'Liverpool', 'home_score': '3', 'away_score': '2', 'match_id': '0S6SM1kD', 'Ball Possession (home)': '31%', 'Ball Possession (away)': '69%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '6', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '298', 'Total Passes (away)': '683', 'Completed Passes (home)': '209', 'Completed Passes (away)': '576', 'Tackles (home)': '8', 'Tackles (away)': '6', 'Attacks (home)': '66', 'Attacks (away)': '163', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '83'}, {'home_team': 'Arsenal', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': '0pMTY7r8', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '17', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '3', 'Throw-ins (home)': '16', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '6', 'Fouls (away)': '19', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '488', 'Total Passes (away)': '316', 'Completed Passes (home)': '409', 'Completed Passes (away)': '228', 'Tackles (home)': '22', 'Tackles (away)': '15', 'Attacks (home)': '109', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Everton', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '0', 'match_id': '6o5CQqjl', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '18', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '22', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '17', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '428', 'Total Passes (away)': '534', 'Completed Passes (home)': '345', 'Completed Passes (away)': '453', 'Tackles (home)': '22', 'Tackles (away)': '16', 'Attacks (home)': '120', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Leeds', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '1', 'match_id': 'lAfHP35f', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '6', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '431', 'Total Passes (away)': '356', 'Completed Passes (home)': '333', 'Completed Passes (away)': '253', 'Tackles (home)': '12', 'Tackles (away)': '33', 'Attacks (home)': '114', 'Attacks (away)': '74', 'Dangerous Attacks (home)': '68', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Brighton', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': 'dCFxXoDK', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '10', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '653', 'Total Passes (away)': '325', 'Completed Passes (home)': '581', 'Completed Passes (away)': '254', 'Tackles (home)': '15', 'Tackles (away)': '23', 'Attacks (home)': '122', 'Attacks (away)': '69', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Brentford', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '2', 'match_id': 'vyLXXRcE', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '29', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '559', 'Total Passes (away)': '313', 'Completed Passes (home)': '420', 'Completed Passes (away)': '210', 'Tackles (home)': '19', 'Tackles (away)': '16', 'Attacks (home)': '158', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Chelsea', 'away_team': 'Burnley', 'home_score': '1', 'away_score': '1', 'match_id': 'z3EtW5SQ', 'Ball Possession (home)': '70%', 'Ball Possession (away)': '30%', 'Goal Attempts (home)': '25', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '21', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '6', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '660', 'Total Passes (away)': '285', 'Completed Passes (home)': '565', 'Completed Passes (away)': '196', 'Tackles (home)': '8', 'Tackles (away)': '17', 'Attacks (home)': '127', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '79', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Crystal Palace', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '0', 'match_id': 'hr18RPzr', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '15', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '30', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '14', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '547', 'Total Passes (away)': '360', 'Completed Passes (home)': '445', 'Completed Passes (away)': '264', 'Tackles (home)': '28', 'Tackles (away)': '32', 'Attacks (home)': '131', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '56', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Manchester Utd', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '2', 'match_id': 'S0gLONK0', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '14', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '400', 'Total Passes (away)': '832', 'Completed Passes (home)': '322', 'Completed Passes (away)': '753', 'Tackles (home)': '18', 'Tackles (away)': '12', 'Attacks (home)': '78', 'Attacks (away)': '176', 'Dangerous Attacks (home)': '22', 'Dangerous Attacks (away)': '85'}, {'home_team': 'Southampton', 'away_team': 'Aston Villa', 'home_score': '1', 'away_score': '0', 'match_id': 'My8ONsz7', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '12', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '431', 'Total Passes (away)': '327', 'Completed Passes (home)': '349', 'Completed Passes (away)': '233', 'Tackles (home)': '14', 'Tackles (away)': '22', 'Attacks (home)': '99', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '51', 'Dangerous Attacks (away)': '62'}, {'home_team': 'Wolves', 'away_team': 'Everton', 'home_score': '2', 'away_score': '1', 'match_id': 'nsYoAO57', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '617', 'Total Passes (away)': '373', 'Completed Passes (home)': '524', 'Completed Passes (away)': '281', 'Tackles (home)': '15', 'Tackles (away)': '26', 'Attacks (home)': '143', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Aston Villa', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '4', 'match_id': 'ETcnMUb2', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '21', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '13', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '7', 'Fouls (away)': '13', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '333', 'Total Passes (away)': '459', 'Completed Passes (home)': '245', 'Completed Passes (away)': '377', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '96', 'Attacks (away)': '97', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Norwich', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '2', 'match_id': 'EitZCQLl', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '23', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '0', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '24', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '14', 'Fouls (away)': '23', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '310', 'Total Passes (away)': '345', 'Completed Passes (home)': '204', 'Completed Passes (away)': '251', 'Tackles (home)': '17', 'Tackles (away)': '21', 'Attacks (home)': '106', 'Attacks (away)': '78', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Tottenham', 'away_team': 'Manchester Utd', 'home_score': '0', 'away_score': '3', 'match_id': 'hruwCpye', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '1', 'Offsides (home)': '4', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '12', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '570', 'Total Passes (away)': '421', 'Completed Passes (home)': '477', 'Completed Passes (away)': '334', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '141', 'Attacks (away)': '94', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Burnley', 'away_team': 'Brentford', 'home_score': '3', 'away_score': '1', 'match_id': 'hKdjLlE8', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '22', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '356', 'Total Passes (away)': '521', 'Completed Passes (home)': '245', 'Completed Passes (away)': '392', 'Tackles (home)': '8', 'Tackles (away)': '12', 'Attacks (home)': '121', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '33'}, {'home_team': 'Liverpool', 'away_team': 'Brighton', 'home_score': '2', 'away_score': '2', 'match_id': '0p0bJSrL', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '5', 'Throw-ins (home)': '20', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '5', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '641', 'Total Passes (away)': '464', 'Completed Passes (home)': '552', 'Completed Passes (away)': '361', 'Tackles (home)': '10', 'Tackles (away)': '20', 'Attacks (home)': '127', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Manchester City', 'away_team': 'Crystal Palace', 'home_score': '0', 'away_score': '2', 'match_id': 'r9k3InbR', 'Ball Possession (home)': '68%', 'Ball Possession (away)': '32%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '5', 'Throw-ins (home)': '32', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '654', 'Total Passes (away)': '319', 'Completed Passes (home)': '562', 'Completed Passes (away)': '231', 'Tackles (home)': '16', 'Tackles (away)': '21', 'Attacks (home)': '146', 'Attacks (away)': '62', 'Dangerous Attacks (home)': '84', 'Dangerous Attacks (away)': '15'}, {'home_team': 'Newcastle', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'pIyVD66r', 'Ball Possession (home)': '21%', 'Ball Possession (away)': '79%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '16', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '11', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '14', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '198', 'Total Passes (away)': '773', 'Completed Passes (home)': '121', 'Completed Passes (away)': '687', 'Tackles (home)': '10', 'Tackles (away)': '12', 'Attacks (home)': '60', 'Attacks (away)': '153', 'Dangerous Attacks (home)': '21', 'Dangerous Attacks (away)': '93'}, {'home_team': 'Watford', 'away_team': 'Southampton', 'home_score': '0', 'away_score': '1', 'match_id': 'z7UsB4j1', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '4', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '297', 'Total Passes (away)': '482', 'Completed Passes (home)': '198', 'Completed Passes (away)': '358', 'Tackles (home)': '15', 'Tackles (away)': '15', 'Attacks (home)': '129', 'Attacks (away)': '116', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '53'}, {'home_team': 'Leicester', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '2', 'match_id': 'nsdfK8TE', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '10', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '24', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '8', 'Fouls (home)': '8', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '621', 'Total Passes (away)': '342', 'Completed Passes (home)': '541', 'Completed Passes (away)': '262', 'Tackles (home)': '11', 'Tackles (away)': '7', 'Attacks (home)': '115', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Manchester Utd', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '5', 'match_id': 've75FbQk', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '9', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '7', 'Offsides (away)': '0', 'Throw-ins (home)': '12', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '6', 'Yellow Cards (away)': '0', 'Total Passes (home)': '409', 'Total Passes (away)': '731', 'Completed Passes (home)': '334', 'Completed Passes (away)': '652', 'Tackles (home)': '5', 'Tackles (away)': '11', 'Attacks (home)': '78', 'Attacks (away)': '147', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '40'}, {'home_team': 'Brentford', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '2', 'match_id': 'GEcGyksh', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '2', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '21', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '445', 'Total Passes (away)': '387', 'Completed Passes (home)': '340', 'Completed Passes (away)': '286', 'Tackles (home)': '20', 'Tackles (away)': '18', 'Attacks (home)': '136', 'Attacks (away)': '65', 'Dangerous Attacks (home)': '49', 'Dangerous Attacks (away)': '18'}, {'home_team': 'West Ham', 'away_team': 'Tottenham', 'home_score': '1', 'away_score': '0', 'match_id': 'C85DDxe2', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '3', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '4', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '369', 'Total Passes (away)': '637', 'Completed Passes (home)': '287', 'Completed Passes (away)': '535', 'Tackles (home)': '23', 'Tackles (away)': '15', 'Attacks (home)': '93', 'Attacks (away)': '131', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Brighton', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '4', 'match_id': 'bwmLz9db', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '23', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '14', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '5', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '10', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '6', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '501', 'Total Passes (away)': '566', 'Completed Passes (home)': '413', 'Completed Passes (away)': '478', 'Tackles (home)': '16', 'Tackles (away)': '7', 'Attacks (home)': '74', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Crystal Palace', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': '63jTYnRA', 'Ball Possession (home)': '75%', 'Ball Possession (away)': '25%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '19', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '665', 'Total Passes (away)': '214', 'Completed Passes (home)': '577', 'Completed Passes (away)': '138', 'Tackles (home)': '11', 'Tackles (away)': '18', 'Attacks (home)': '152', 'Attacks (away)': '78', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Everton', 'away_team': 'Watford', 'home_score': '2', 'away_score': '5', 'match_id': 'pfkXX6tH', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '13', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '35', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '389', 'Total Passes (away)': '388', 'Completed Passes (home)': '292', 'Completed Passes (away)': '286', 'Tackles (home)': '25', 'Tackles (away)': '11', 'Attacks (home)': '95', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '60'}, {'home_team': 'Leeds', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '1', 'match_id': 'Qi31GvBq', 'Ball Possession (home)': '63%', 'Ball Possession (away)': '37%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '494', 'Total Passes (away)': '293', 'Completed Passes (home)': '402', 'Completed Passes (away)': '194', 'Tackles (home)': '25', 'Tackles (away)': '16', 'Attacks (home)': '143', 'Attacks (away)': '87', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '23'}, {'home_team': 'Southampton', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '2', 'match_id': 'YH69EIud', 'Ball Possession (home)': '61%', 'Ball Possession (away)': '39%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '32', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '450', 'Total Passes (away)': '284', 'Completed Passes (home)': '339', 'Completed Passes (away)': '172', 'Tackles (home)': '11', 'Tackles (away)': '12', 'Attacks (home)': '117', 'Attacks (away)': '103', 'Dangerous Attacks (home)': '55', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Chelsea', 'away_team': 'Norwich', 'home_score': '7', 'away_score': '0', 'match_id': 'xUoPZSB4', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '23', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '13', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '15', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '14', 'Fouls (away)': '16', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '4', 'Total Passes (home)': '626', 'Total Passes (away)': '380', 'Completed Passes (home)': '567', 'Completed Passes (away)': '299', 'Tackles (home)': '19', 'Tackles (away)': '12', 'Attacks (home)': '132', 'Attacks (away)': '68', 'Dangerous Attacks (home)': '77', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Arsenal', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '1', 'match_id': 'ITvDxVRo', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '19', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '17', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '454', 'Total Passes (away)': '392', 'Completed Passes (home)': '366', 'Completed Passes (away)': '299', 'Tackles (home)': '13', 'Tackles (away)': '14', 'Attacks (home)': '105', 'Attacks (away)': '100', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Arsenal', 'away_team': 'Crystal Palace', 'home_score': '2', 'away_score': '2', 'match_id': 'jgLVPirt', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '6', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '26', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '7', 'Fouls (away)': '4', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '544', 'Total Passes (away)': '475', 'Completed Passes (home)': '472', 'Completed Passes (away)': '397', 'Tackles (home)': '17', 'Tackles (away)': '22', 'Attacks (home)': '128', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Newcastle', 'away_team': 'Tottenham', 'home_score': '2', 'away_score': '3', 'match_id': '6kBfKmCH', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '5', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '18', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '4', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '6', 'Yellow Cards (away)': '1', 'Total Passes (home)': '334', 'Total Passes (away)': '612', 'Completed Passes (home)': '263', 'Completed Passes (away)': '527', 'Tackles (home)': '26', 'Tackles (away)': '27', 'Attacks (home)': '93', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '43', 'Dangerous Attacks (away)': '56'}, {'home_team': 'Everton', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '1', 'match_id': 'G0IsNkSb', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '8', 'Free Kicks (home)': '5', 'Free Kicks (away)': '3', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '9', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '3', 'Fouls (away)': '3', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '327', 'Total Passes (away)': '539', 'Completed Passes (home)': '225', 'Completed Passes (away)': '449', 'Tackles (home)': '19', 'Tackles (away)': '13', 'Attacks (home)': '97', 'Attacks (away)': '133', 'Dangerous Attacks (home)': '52', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Brentford', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '1', 'match_id': 'xAJwOVCh', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '29', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '13', 'Fouls (away)': '8', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '405', 'Total Passes (away)': '540', 'Completed Passes (home)': '305', 'Completed Passes (away)': '458', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '104', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Aston Villa', 'away_team': 'Wolves', 'home_score': '2', 'away_score': '3', 'match_id': 'UqKZOBcn', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '18', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '7', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '15', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '17', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '391', 'Total Passes (away)': '415', 'Completed Passes (home)': '308', 'Completed Passes (away)': '321', 'Tackles (home)': '12', 'Tackles (away)': '7', 'Attacks (home)': '91', 'Attacks (away)': '94', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Leicester', 'away_team': 'Manchester Utd', 'home_score': '4', 'away_score': '2', 'match_id': 'bP7nM9s5', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '11', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '19', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '13', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '5', 'Fouls (away)': '17', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '499', 'Total Passes (away)': '517', 'Completed Passes (home)': '424', 'Completed Passes (away)': '445', 'Tackles (home)': '12', 'Tackles (away)': '14', 'Attacks (home)': '110', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '33', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Manchester City', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': 'CSBjLTdB', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '8', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '3', 'Throw-ins (home)': '15', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '11', 'Fouls (away)': '5', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '768', 'Total Passes (away)': '318', 'Completed Passes (home)': '687', 'Completed Passes (away)': '228', 'Tackles (home)': '11', 'Tackles (away)': '17', 'Attacks (home)': '115', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '85', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Norwich', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '0', 'match_id': 'ptAbJ7RN', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '23', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '5', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '5', 'Total Passes (home)': '292', 'Total Passes (away)': '569', 'Completed Passes (home)': '204', 'Completed Passes (away)': '478', 'Tackles (home)': '9', 'Tackles (away)': '19', 'Attacks (home)': '79', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '63'}, {'home_team': 'Southampton', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '0', 'match_id': '2H43IRtU', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '3', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '14', 'Free Kicks (away)': '17', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '1', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '27', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '362', 'Total Passes (away)': '452', 'Completed Passes (home)': '275', 'Completed Passes (away)': '347', 'Tackles (home)': '22', 'Tackles (away)': '21', 'Attacks (home)': '123', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Watford', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '5', 'match_id': '4QjVDoko', 'Ball Possession (home)': '23%', 'Ball Possession (away)': '77%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '9', 'Offsides (home)': '8', 'Offsides (away)': '2', 'Throw-ins (home)': '11', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '10', 'Total Passes (home)': '252', 'Total Passes (away)': '816', 'Completed Passes (home)': '152', 'Completed Passes (away)': '690', 'Tackles (home)': '17', 'Tackles (away)': '18', 'Attacks (home)': '64', 'Attacks (away)': '143', 'Dangerous Attacks (home)': '19', 'Dangerous Attacks (away)': '55'}, {'home_team': 'Liverpool', 'away_team': 'Manchester City', 'home_score': '2', 'away_score': '2', 'match_id': 'Mwc88jD5', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '0', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '5', 'Throw-ins (home)': '28', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '501', 'Total Passes (away)': '529', 'Completed Passes (home)': '423', 'Completed Passes (away)': '443', 'Tackles (home)': '17', 'Tackles (away)': '11', 'Attacks (home)': '110', 'Attacks (away)': '101', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Crystal Palace', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '2', 'match_id': 'lQb0ACrg', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '18', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '30', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '557', 'Total Passes (away)': '382', 'Completed Passes (home)': '446', 'Completed Passes (away)': '262', 'Tackles (home)': '16', 'Tackles (away)': '30', 'Attacks (home)': '127', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '29'}, {'home_team': 'Tottenham', 'away_team': 'Aston Villa', 'home_score': '2', 'away_score': '1', 'match_id': 'I5jH6UsI', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '11', 'Fouls (away)': '14', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '438', 'Total Passes (away)': '318', 'Completed Passes (home)': '349', 'Completed Passes (away)': '226', 'Tackles (home)': '14', 'Tackles (away)': '21', 'Attacks (home)': '111', 'Attacks (away)': '92', 'Dangerous Attacks (home)': '41', 'Dangerous Attacks (away)': '55'}, {'home_team': 'West Ham', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '2', 'match_id': 'CSkL5lcO', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '11', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '16', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '424', 'Total Passes (away)': '286', 'Completed Passes (home)': '309', 'Completed Passes (away)': '184', 'Tackles (home)': '15', 'Tackles (away)': '5', 'Attacks (home)': '121', 'Attacks (away)': '83', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Brighton', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '0', 'match_id': 'hIJPGE5P', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '5', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '8', 'Fouls (away)': '5', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '497', 'Total Passes (away)': '355', 'Completed Passes (home)': '420', 'Completed Passes (away)': '268', 'Tackles (home)': '16', 'Tackles (away)': '8', 'Attacks (home)': '115', 'Attacks (away)': '84', 'Dangerous Attacks (home)': '54', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Burnley', 'away_team': 'Norwich', 'home_score': '0', 'away_score': '0', 'match_id': 'fR5iCYDt', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '3', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '26', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '13', 'Fouls (away)': '3', 'Yellow Cards (home)': '5', 'Yellow Cards (away)': '2', 'Total Passes (home)': '432', 'Total Passes (away)': '356', 'Completed Passes (home)': '418', 'Completed Passes (away)': '344', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '137', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '81', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Chelsea', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '1', 'match_id': 'xjedBhTn', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '31', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '11', 'Fouls (away)': '13', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '3', 'Total Passes (home)': '546', 'Total Passes (away)': '344', 'Completed Passes (home)': '468', 'Completed Passes (away)': '258', 'Tackles (home)': '16', 'Tackles (away)': '24', 'Attacks (home)': '117', 'Attacks (away)': '110', 'Dangerous Attacks (home)': '45', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Leeds', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': 'rmb49Wca', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '20', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '14', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '16', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '3', 'Total Passes (home)': '497', 'Total Passes (away)': '242', 'Completed Passes (home)': '405', 'Completed Passes (away)': '157', 'Tackles (home)': '14', 'Tackles (away)': '20', 'Attacks (home)': '121', 'Attacks (away)': '77', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '29'}, {'home_team': 'Wolves', 'away_team': 'Newcastle', 'home_score': '2', 'away_score': '1', 'match_id': 'QVgP48CU', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '0', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '23', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '15', 'Fouls (away)': '5', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '460', 'Total Passes (away)': '406', 'Completed Passes (home)': '388', 'Completed Passes (away)': '323', 'Tackles (home)': '25', 'Tackles (away)': '14', 'Attacks (home)': '86', 'Attacks (away)': '134', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Manchester Utd', 'away_team': 'Everton', 'home_score': '1', 'away_score': '1', 'match_id': 'vFiD7ASB', 'Ball Possession (home)': '71%', 'Ball Possession (away)': '29%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '10', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '700', 'Total Passes (away)': '268', 'Completed Passes (home)': '674', 'Completed Passes (away)': '250', 'Tackles (home)': '7', 'Tackles (away)': '20', 'Attacks (home)': '154', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '96', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Crystal Palace', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '1', 'match_id': 'U93QcZbm', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '5', 'Total Passes (home)': '498', 'Total Passes (away)': '565', 'Completed Passes (home)': '414', 'Completed Passes (away)': '466', 'Tackles (home)': '17', 'Tackles (away)': '29', 'Attacks (home)': '116', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '58', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Arsenal', 'away_team': 'Tottenham', 'home_score': '3', 'away_score': '1', 'match_id': 'KzEj4yMJ', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '17', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '13', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '12', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '431', 'Total Passes (away)': '485', 'Completed Passes (home)': '357', 'Completed Passes (away)': '413', 'Tackles (home)': '22', 'Tackles (away)': '14', 'Attacks (home)': '99', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '31'}, {'home_team': 'Southampton', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '1', 'match_id': 'QBRwgBDI', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '22', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Total Passes (home)': '497', 'Total Passes (away)': '383', 'Completed Passes (home)': '416', 'Completed Passes (away)': '283', 'Tackles (home)': '13', 'Tackles (away)': '12', 'Attacks (home)': '119', 'Attacks (away)': '96', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '36'}, {'home_team': 'Brentford', 'away_team': 'Liverpool', 'home_score': '3', 'away_score': '3', 'match_id': 'YwIf3eyQ', 'Ball Possession (home)': '33%', 'Ball Possession (away)': '67%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '16', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '11', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '11', 'Offsides (home)': '4', 'Offsides (away)': '4', 'Throw-ins (home)': '14', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '8', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '271', 'Total Passes (away)': '561', 'Completed Passes (home)': '175', 'Completed Passes (away)': '456', 'Tackles (home)': '14', 'Tackles (away)': '11', 'Attacks (home)': '85', 'Attacks (away)': '126', 'Dangerous Attacks (home)': '35', 'Dangerous Attacks (away)': '70'}, {'home_team': 'Everton', 'away_team': 'Norwich', 'home_score': '2', 'away_score': '0', 'match_id': 'dWZMdgEg', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '4', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '420', 'Total Passes (away)': '487', 'Completed Passes (home)': '344', 'Completed Passes (away)': '406', 'Tackles (home)': '18', 'Tackles (away)': '12', 'Attacks (home)': '110', 'Attacks (away)': '92', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Leeds', 'away_team': 'West Ham', 'home_score': '1', 'away_score': '2', 'match_id': 'zNYQeDTa', 'Ball Possession (home)': '54%', 'Ball Possession (away)': '46%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '7', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '7', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '15', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '414', 'Total Passes (away)': '348', 'Completed Passes (home)': '335', 'Completed Passes (away)': '272', 'Tackles (home)': '16', 'Tackles (away)': '15', 'Attacks (home)': '85', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '48'}, {'home_team': 'Leicester', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '2', 'match_id': 'UqYUfXr6', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '22', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '11', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '11', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '4', 'Throw-ins (home)': '26', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '576', 'Total Passes (away)': '286', 'Completed Passes (home)': '480', 'Completed Passes (away)': '195', 'Tackles (home)': '17', 'Tackles (away)': '13', 'Attacks (home)': '99', 'Attacks (away)': '99', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Watford', 'away_team': 'Newcastle', 'home_score': '1', 'away_score': '1', 'match_id': '42QshVSO', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '8', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '15', 'Free Kicks (away)': '20', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '26', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '19', 'Fouls (away)': '12', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '364', 'Total Passes (away)': '335', 'Completed Passes (home)': '275', 'Completed Passes (away)': '255', 'Tackles (home)': '13', 'Tackles (away)': '22', 'Attacks (home)': '118', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Chelsea', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': 'jJ4MbFqs', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '5', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '1', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '13', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '13', 'Offsides (home)': '3', 'Offsides (away)': '4', 'Throw-ins (home)': '14', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '413', 'Total Passes (away)': '598', 'Completed Passes (home)': '325', 'Completed Passes (away)': '524', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '73', 'Attacks (away)': '135', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '74'}, {'home_team': 'Manchester Utd', 'away_team': 'Aston Villa', 'home_score': '0', 'away_score': '1', 'match_id': 'rmxZgibC', 'Ball Possession (home)': '59%', 'Ball Possession (away)': '41%', 'Goal Attempts (home)': '28', 'Goal Attempts (away)': '7', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '11', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '13', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '14', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '27', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '409', 'Total Passes (away)': '271', 'Completed Passes (home)': '313', 'Completed Passes (away)': '187', 'Tackles (home)': '12', 'Tackles (away)': '9', 'Attacks (home)': '91', 'Attacks (away)': '95', 'Dangerous Attacks (home)': '57', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Tottenham', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '3', 'match_id': 'A5WasEE6', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '20', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '10', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '15', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '11', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '16', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '4', 'Fouls (away)': '15', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '479', 'Total Passes (away)': '525', 'Completed Passes (home)': '395', 'Completed Passes (away)': '453', 'Tackles (home)': '20', 'Tackles (away)': '15', 'Attacks (home)': '109', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '64'}, {'home_team': 'Brighton', 'away_team': 'Leicester', 'home_score': '2', 'away_score': '1', 'match_id': 'lhNA34V8', 'Ball Possession (home)': '37%', 'Ball Possession (away)': '63%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '7', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '9', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '318', 'Total Passes (away)': '542', 'Completed Passes (home)': '244', 'Completed Passes (away)': '463', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '86', 'Attacks (away)': '125', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '61'}, {'home_team': 'West Ham', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '2', 'match_id': 'vuy4tYTC'}, {'home_team': 'Aston Villa', 'away_team': 'Everton', 'home_score': '3', 'away_score': '0', 'match_id': 'A1O64pG2', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '12', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '15', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '7', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '384', 'Total Passes (away)': '310', 'Completed Passes (home)': '308', 'Completed Passes (away)': '228', 'Tackles (home)': '10', 'Tackles (away)': '22', 'Attacks (home)': '119', 'Attacks (away)': '72', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Burnley', 'away_team': 'Arsenal', 'home_score': '0', 'away_score': '1', 'match_id': '6THF2OpF', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '11', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '3', 'Offsides (home)': '4', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '392', 'Total Passes (away)': '523', 'Completed Passes (home)': '291', 'Completed Passes (away)': '420', 'Tackles (home)': '13', 'Tackles (away)': '18', 'Attacks (home)': '127', 'Attacks (away)': '98', 'Dangerous Attacks (home)': '74', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Liverpool', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '0', 'match_id': 'rguqodFs', 'Ball Possession (home)': '60%', 'Ball Possession (away)': '40%', 'Goal Attempts (home)': '25', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '14', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '18', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '17', 'Fouls (away)': '11', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '490', 'Total Passes (away)': '332', 'Completed Passes (home)': '412', 'Completed Passes (away)': '253', 'Tackles (home)': '22', 'Tackles (away)': '24', 'Attacks (home)': '114', 'Attacks (away)': '74', 'Dangerous Attacks (home)': '75', 'Dangerous Attacks (away)': '51'}, {'home_team': 'Manchester City', 'away_team': 'Southampton', 'home_score': '0', 'away_score': '0', 'match_id': 'xGvmpGUm', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '10', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '4', 'Offsides (away)': '0', 'Throw-ins (home)': '21', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '5', 'Fouls (away)': '12', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '555', 'Total Passes (away)': '319', 'Completed Passes (home)': '483', 'Completed Passes (away)': '239', 'Tackles (home)': '13', 'Tackles (away)': '21', 'Attacks (home)': '110', 'Attacks (away)': '89', 'Dangerous Attacks (home)': '66', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Norwich', 'away_team': 'Watford', 'home_score': '1', 'away_score': '3', 'match_id': 'WEXerfa0', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '14', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '25', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '10', 'Fouls (away)': '14', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '374', 'Total Passes (away)': '396', 'Completed Passes (home)': '303', 'Completed Passes (away)': '313', 'Tackles (home)': '17', 'Tackles (away)': '11', 'Attacks (home)': '100', 'Attacks (away)': '92', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '47'}, {'home_team': 'Wolves', 'away_team': 'Brentford', 'home_score': '0', 'away_score': '2', 'match_id': 'IVZ7uhqJ', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '0', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '9', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '2', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '25', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '10', 'Fouls (away)': '7', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '4', 'Total Passes (home)': '519', 'Total Passes (away)': '323', 'Completed Passes (home)': '431', 'Completed Passes (away)': '238', 'Tackles (home)': '9', 'Tackles (away)': '15', 'Attacks (home)': '116', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '69', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Newcastle', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '1', 'match_id': 'ljriqzpf', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '10', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '8', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '11', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '2', 'Total Passes (home)': '301', 'Total Passes (away)': '540', 'Completed Passes (home)': '209', 'Completed Passes (away)': '458', 'Tackles (home)': '17', 'Tackles (away)': '19', 'Attacks (home)': '72', 'Attacks (away)': '112', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Everton', 'away_team': 'Burnley', 'home_score': '3', 'away_score': '1', 'match_id': 'C6dtlPVL', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '6', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '27', 'Throw-ins (away)': '28', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '3', 'Fouls (away)': '6', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '416', 'Total Passes (away)': '384', 'Completed Passes (home)': '304', 'Completed Passes (away)': '250', 'Tackles (home)': '10', 'Tackles (away)': '10', 'Attacks (home)': '99', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '53', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Leeds', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '3', 'match_id': 'jcepmqoS', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '30', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '15', 'Free Kicks (home)': '12', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '11', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '13', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '9', 'Fouls (away)': '8', 'Red Cards (home)': '1', 'Red Cards (away)': '0', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '404', 'Total Passes (away)': '524', 'Completed Passes (home)': '328', 'Completed Passes (away)': '454', 'Tackles (home)': '16', 'Tackles (away)': '8', 'Attacks (home)': '69', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '47', 'Dangerous Attacks (away)': '59'}, {'home_team': 'Chelsea', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '0', 'match_id': 'Gv3Xko19', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '12', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '11', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '16', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '476', 'Total Passes (away)': '344', 'Completed Passes (home)': '391', 'Completed Passes (away)': '263', 'Tackles (home)': '15', 'Tackles (away)': '12', 'Attacks (home)': '80', 'Attacks (away)': '117', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '68'}, {'home_team': 'Arsenal', 'away_team': 'Norwich', 'home_score': '1', 'away_score': '0', 'match_id': 'rR4Pi7Wd', 'Ball Possession (home)': '52%', 'Ball Possession (away)': '48%', 'Goal Attempts (home)': '30', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '13', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '18', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '437', 'Total Passes (away)': '408', 'Completed Passes (home)': '359', 'Completed Passes (away)': '320', 'Tackles (home)': '16', 'Tackles (away)': '20', 'Attacks (home)': '110', 'Attacks (away)': '83', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Brentford', 'away_team': 'Brighton', 'home_score': '0', 'away_score': '1', 'match_id': 'MH3TjRo3', 'Ball Possession (home)': '41%', 'Ball Possession (away)': '59%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '13', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '1', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '22', 'Throw-ins (away)': '30', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '9', 'Fouls (away)': '12', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '2', 'Total Passes (home)': '336', 'Total Passes (away)': '496', 'Completed Passes (home)': '245', 'Completed Passes (away)': '393', 'Tackles (home)': '21', 'Tackles (away)': '16', 'Attacks (home)': '67', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Leicester', 'away_team': 'Manchester City', 'home_score': '0', 'away_score': '1', 'match_id': 'MurCr3gq', 'Ball Possession (home)': '39%', 'Ball Possession (away)': '61%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '25', 'Shots on Goal (home)': '1', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '10', 'Free Kicks (home)': '15', 'Free Kicks (away)': '4', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '8', 'Offsides (home)': '2', 'Offsides (away)': '4', 'Throw-ins (home)': '12', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '7', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '4', 'Fouls (away)': '11', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '364', 'Total Passes (away)': '557', 'Completed Passes (home)': '287', 'Completed Passes (away)': '493', 'Tackles (home)': '18', 'Tackles (away)': '14', 'Attacks (home)': '58', 'Attacks (away)': '122', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '81'}, {'home_team': 'Manchester Utd', 'away_team': 'Newcastle', 'home_score': '4', 'away_score': '1', 'match_id': '0WtGsN8k', 'Ball Possession (home)': '64%', 'Ball Possession (away)': '36%', 'Goal Attempts (home)': '21', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '5', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '9', 'Fouls (away)': '2', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '644', 'Total Passes (away)': '365', 'Completed Passes (home)': '574', 'Completed Passes (away)': '287', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '141', 'Attacks (away)': '72', 'Dangerous Attacks (home)': '83', 'Dangerous Attacks (away)': '27'}, {'home_team': 'Southampton', 'away_team': 'West Ham', 'home_score': '0', 'away_score': '0', 'match_id': 'reWKtsOe', 'Ball Possession (home)': '42%', 'Ball Possession (away)': '58%', 'Goal Attempts (home)': '11', 'Goal Attempts (away)': '13', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '14', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '14', 'Throw-ins (away)': '11', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '12', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '390', 'Total Passes (away)': '541', 'Completed Passes (home)': '304', 'Completed Passes (away)': '456', 'Tackles (home)': '8', 'Tackles (away)': '14', 'Attacks (home)': '73', 'Attacks (away)': '115', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '57'}, {'home_team': 'Watford', 'away_team': 'Wolves', 'home_score': '0', 'away_score': '2', 'match_id': 'dbzPu1w2', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '20', 'Throw-ins (away)': '13', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '15', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '370', 'Total Passes (away)': '485', 'Completed Passes (home)': '293', 'Completed Passes (away)': '415', 'Tackles (home)': '20', 'Tackles (away)': '19', 'Attacks (home)': '86', 'Attacks (away)': '126', 'Dangerous Attacks (home)': '42', 'Dangerous Attacks (away)': '52'}, {'home_team': 'Crystal Palace', 'away_team': 'Tottenham', 'home_score': '3', 'away_score': '0', 'match_id': 'Us7yk5GF', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '18', 'Goal Attempts (away)': '2', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '28', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '13', 'Fouls (away)': '15', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '498', 'Total Passes (away)': '314', 'Completed Passes (home)': '404', 'Completed Passes (away)': '226', 'Tackles (home)': '17', 'Tackles (away)': '16', 'Attacks (home)': '119', 'Attacks (away)': '102', 'Dangerous Attacks (home)': '71', 'Dangerous Attacks (away)': '22'}, {'home_team': 'Wolves', 'away_team': 'Manchester Utd', 'home_score': '0', 'away_score': '1', 'match_id': '69LtTNgd', 'Ball Possession (home)': '44%', 'Ball Possession (away)': '56%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '7', 'Offsides (home)': '5', 'Offsides (away)': '4', 'Throw-ins (home)': '11', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '7', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '427', 'Total Passes (away)': '552', 'Completed Passes (home)': '349', 'Completed Passes (away)': '478', 'Tackles (home)': '16', 'Tackles (away)': '8', 'Attacks (home)': '92', 'Attacks (away)': '118', 'Dangerous Attacks (home)': '34', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Burnley', 'away_team': 'Leeds', 'home_score': '1', 'away_score': '1', 'match_id': 'rDPjw8H3', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '12', 'Goal Attempts (away)': '12', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '11', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '5', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '13', 'Fouls (away)': '9', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '3', 'Total Passes (home)': '291', 'Total Passes (away)': '521', 'Completed Passes (home)': '198', 'Completed Passes (away)': '426', 'Tackles (home)': '23', 'Tackles (away)': '17', 'Attacks (home)': '106', 'Attacks (away)': '114', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '58'}, {'home_team': 'Tottenham', 'away_team': 'Watford', 'home_score': '1', 'away_score': '0', 'match_id': 'YeNYUqPq', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '15', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '12', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '3', 'Offsides (home)': '2', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '8', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '500', 'Total Passes (away)': '364', 'Completed Passes (home)': '439', 'Completed Passes (away)': '297', 'Tackles (home)': '19', 'Tackles (away)': '16', 'Attacks (home)': '122', 'Attacks (away)': '77', 'Dangerous Attacks (home)': '62', 'Dangerous Attacks (away)': '34'}, {'home_team': 'Liverpool', 'away_team': 'Chelsea', 'home_score': '1', 'away_score': '1', 'match_id': 'M3OfxSW9', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '24', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '12', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '5', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '12', 'Corner Kicks (away)': '3', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '16', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '13', 'Fouls (away)': '4', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '2', 'Total Passes (home)': '695', 'Total Passes (away)': '370', 'Completed Passes (home)': '598', 'Completed Passes (away)': '268', 'Tackles (home)': '16', 'Tackles (away)': '26', 'Attacks (home)': '167', 'Attacks (away)': '59', 'Dangerous Attacks (home)': '110', 'Dangerous Attacks (away)': '26'}, {'home_team': 'Aston Villa', 'away_team': 'Brentford', 'home_score': '1', 'away_score': '1', 'match_id': 'noWsuUni', 'Ball Possession (home)': '46%', 'Ball Possession (away)': '54%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '6', 'Free Kicks (home)': '16', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '18', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '15', 'Fouls (away)': '14', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '364', 'Total Passes (away)': '435', 'Completed Passes (home)': '269', 'Completed Passes (away)': '334', 'Tackles (home)': '13', 'Tackles (away)': '16', 'Attacks (home)': '98', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '46', 'Dangerous Attacks (away)': '43'}, {'home_team': 'Brighton', 'away_team': 'Everton', 'home_score': '0', 'away_score': '2', 'match_id': '0lznvl2c', 'Ball Possession (home)': '66%', 'Ball Possession (away)': '34%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '6', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '7', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '17', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '7', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '612', 'Total Passes (away)': '315', 'Completed Passes (home)': '529', 'Completed Passes (away)': '243', 'Tackles (home)': '25', 'Tackles (away)': '17', 'Attacks (home)': '116', 'Attacks (away)': '93', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Newcastle', 'away_team': 'Southampton', 'home_score': '2', 'away_score': '2', 'match_id': 'UTR2z61M', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '9', 'Free Kicks (home)': '5', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '4', 'Corner Kicks (away)': '4', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '13', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '3', 'Total Passes (home)': '293', 'Total Passes (away)': '525', 'Completed Passes (home)': '203', 'Completed Passes (away)': '451', 'Tackles (home)': '31', 'Tackles (away)': '15', 'Attacks (home)': '86', 'Attacks (away)': '141', 'Dangerous Attacks (home)': '32', 'Dangerous Attacks (away)': '65'}, {'home_team': 'Norwich', 'away_team': 'Leicester', 'home_score': '1', 'away_score': '2', 'match_id': 'ChH7ZPGS', 'Ball Possession (home)': '45%', 'Ball Possession (away)': '55%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '4', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '10', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '9', 'Offsides (home)': '2', 'Offsides (away)': '2', 'Throw-ins (home)': '24', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '9', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '369', 'Total Passes (away)': '471', 'Completed Passes (home)': '285', 'Completed Passes (away)': '364', 'Tackles (home)': '18', 'Tackles (away)': '17', 'Attacks (home)': '95', 'Attacks (away)': '87', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '32'}, {'home_team': 'West Ham', 'away_team': 'Crystal Palace', 'home_score': '2', 'away_score': '2', 'match_id': 'SIMxU3vj', 'Ball Possession (home)': '46%', 'Ball Possession (away)': '54%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '3', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '3', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '378', 'Total Passes (away)': '462', 'Completed Passes (home)': '295', 'Completed Passes (away)': '380', 'Tackles (home)': '16', 'Tackles (away)': '13', 'Attacks (home)': '116', 'Attacks (away)': '102', 'Dangerous Attacks (home)': '64', 'Dangerous Attacks (away)': '46'}, {'home_team': 'Manchester City', 'away_team': 'Arsenal', 'home_score': '5', 'away_score': '0', 'match_id': 'jwTbynnG', 'Ball Possession (home)': '81%', 'Ball Possession (away)': '19%', 'Goal Attempts (home)': '25', 'Goal Attempts (away)': '1', 'Shots on Goal (home)': '10', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '10', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '14', 'Corner Kicks (away)': '0', 'Offsides (home)': '1', 'Offsides (away)': '3', 'Throw-ins (home)': '25', 'Throw-ins (away)': '12', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '5', 'Fouls (home)': '5', 'Fouls (away)': '7', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '757', 'Total Passes (away)': '185', 'Completed Passes (home)': '693', 'Completed Passes (away)': '125', 'Tackles (home)': '14', 'Tackles (away)': '9', 'Attacks (home)': '135', 'Attacks (away)': '50', 'Dangerous Attacks (home)': '91', 'Dangerous Attacks (away)': '14'}, {'home_team': 'West Ham', 'away_team': 'Leicester', 'home_score': '4', 'away_score': '1', 'match_id': 'fiqdHQfp', 'Ball Possession (home)': '51%', 'Ball Possession (away)': '49%', 'Goal Attempts (home)': '19', 'Goal Attempts (away)': '5', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '8', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '10', 'Corner Kicks (away)': '0', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '24', 'Throw-ins (away)': '15', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '8', 'Fouls (away)': '8', 'Red Cards (home)': '0', 'Red Cards (away)': '1', 'Yellow Cards (home)': '0', 'Yellow Cards (away)': '1', 'Total Passes (home)': '502', 'Total Passes (away)': '508', 'Completed Passes (home)': '431', 'Completed Passes (away)': '427', 'Tackles (home)': '15', 'Tackles (away)': '13', 'Attacks (home)': '126', 'Attacks (away)': '86', 'Dangerous Attacks (home)': '80', 'Dangerous Attacks (away)': '21'}, {'home_team': 'Arsenal', 'away_team': 'Chelsea', 'home_score': '0', 'away_score': '2', 'match_id': 'zRp8Sj3o', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '6', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '5', 'Shots off Goal (home)': '2', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '11', 'Free Kicks (home)': '4', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '9', 'Corner Kicks (away)': '8', 'Offsides (home)': '5', 'Offsides (away)': '0', 'Throw-ins (home)': '14', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '10', 'Fouls (away)': '4', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '0', 'Total Passes (home)': '335', 'Total Passes (away)': '646', 'Completed Passes (home)': '261', 'Completed Passes (away)': '563', 'Tackles (home)': '20', 'Tackles (away)': '11', 'Attacks (home)': '90', 'Attacks (away)': '83', 'Dangerous Attacks (home)': '48', 'Dangerous Attacks (away)': '59'}, {'home_team': 'Southampton', 'away_team': 'Manchester Utd', 'home_score': '1', 'away_score': '1', 'match_id': 'jNvyM6nT', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '15', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '7', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '19', 'Throw-ins (away)': '18', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '10', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '3', 'Total Passes (home)': '291', 'Total Passes (away)': '520', 'Completed Passes (home)': '201', 'Completed Passes (away)': '414', 'Tackles (home)': '23', 'Tackles (away)': '19', 'Attacks (home)': '99', 'Attacks (away)': '105', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '50'}, {'home_team': 'Wolves', 'away_team': 'Tottenham', 'home_score': '0', 'away_score': '1', 'match_id': 'Ysr0GpAj', 'Ball Possession (home)': '58%', 'Ball Possession (away)': '42%', 'Goal Attempts (home)': '25', 'Goal Attempts (away)': '8', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '6', 'Shots off Goal (home)': '9', 'Shots off Goal (away)': '0', 'Blocked Shots (home)': '10', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '7', 'Free Kicks (away)': '10', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '28', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '6', 'Fouls (home)': '9', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '4', 'Total Passes (home)': '470', 'Total Passes (away)': '356', 'Completed Passes (home)': '394', 'Completed Passes (away)': '275', 'Tackles (home)': '29', 'Tackles (away)': '18', 'Attacks (home)': '134', 'Attacks (away)': '82', 'Dangerous Attacks (home)': '90', 'Dangerous Attacks (away)': '25'}, {'home_team': 'Brighton', 'away_team': 'Watford', 'home_score': '2', 'away_score': '0', 'match_id': 'rilGQUXc', 'Ball Possession (home)': '57%', 'Ball Possession (away)': '43%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '7', 'Free Kicks (away)': '12', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '2', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '13', 'Throw-ins (away)': '22', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '11', 'Fouls (away)': '6', 'Yellow Cards (home)': '4', 'Yellow Cards (away)': '0', 'Total Passes (home)': '585', 'Total Passes (away)': '441', 'Completed Passes (home)': '502', 'Completed Passes (away)': '365', 'Tackles (home)': '19', 'Tackles (away)': '12', 'Attacks (home)': '104', 'Attacks (away)': '85', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '63'}, {'home_team': 'Aston Villa', 'away_team': 'Newcastle', 'home_score': '2', 'away_score': '0', 'match_id': 'EHqCRAIi', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '10', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '9', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '4', 'Offsides (home)': '3', 'Offsides (away)': '2', 'Throw-ins (home)': '15', 'Throw-ins (away)': '25', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '8', 'Fouls (away)': '18', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '4', 'Total Passes (home)': '303', 'Total Passes (away)': '333', 'Completed Passes (home)': '236', 'Completed Passes (away)': '258', 'Tackles (home)': '12', 'Tackles (away)': '14', 'Attacks (home)': '83', 'Attacks (away)': '73', 'Dangerous Attacks (home)': '39', 'Dangerous Attacks (away)': '38'}, {'home_team': 'Crystal Palace', 'away_team': 'Brentford', 'home_score': '0', 'away_score': '0', 'match_id': 'MsmKPlm4', 'Ball Possession (home)': '53%', 'Ball Possession (away)': '47%', 'Goal Attempts (home)': '7', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '2', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '10', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '32', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '12', 'Fouls (away)': '9', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '431', 'Total Passes (away)': '382', 'Completed Passes (home)': '324', 'Completed Passes (away)': '270', 'Tackles (home)': '15', 'Tackles (away)': '24', 'Attacks (home)': '103', 'Attacks (away)': '108', 'Dangerous Attacks (home)': '37', 'Dangerous Attacks (away)': '39'}, {'home_team': 'Leeds', 'away_team': 'Everton', 'home_score': '2', 'away_score': '2', 'match_id': '46xPO82A', 'Ball Possession (home)': '70%', 'Ball Possession (away)': '30%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '6', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '13', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '5', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '22', 'Throw-ins (away)': '20', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '6', 'Fouls (away)': '13', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '4', 'Total Passes (home)': '606', 'Total Passes (away)': '253', 'Completed Passes (home)': '517', 'Completed Passes (away)': '168', 'Tackles (home)': '19', 'Tackles (away)': '16', 'Attacks (home)': '141', 'Attacks (away)': '71', 'Dangerous Attacks (home)': '61', 'Dangerous Attacks (away)': '37'}, {'home_team': 'Manchester City', 'away_team': 'Norwich', 'home_score': '5', 'away_score': '0', 'match_id': 'CWuXMnXM', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '1', 'Shots on Goal (home)': '4', 'Shots on Goal (away)': '0', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '0', 'Free Kicks (home)': '10', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '1', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '20', 'Throw-ins (away)': '10', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '0', 'Fouls (home)': '13', 'Fouls (away)': '7', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '730', 'Total Passes (away)': '362', 'Completed Passes (home)': '684', 'Completed Passes (away)': '307', 'Tackles (home)': '14', 'Tackles (away)': '19', 'Attacks (home)': '153', 'Attacks (away)': '31', 'Dangerous Attacks (home)': '89', 'Dangerous Attacks (away)': '10'}, {'home_team': 'Liverpool', 'away_team': 'Burnley', 'home_score': '2', 'away_score': '0', 'match_id': 'I9tTNSHG', 'Ball Possession (home)': '67%', 'Ball Possession (away)': '33%', 'Goal Attempts (home)': '27', 'Goal Attempts (away)': '9', 'Shots on Goal (home)': '9', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '10', 'Shots off Goal (away)': '5', 'Blocked Shots (home)': '8', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '16', 'Free Kicks (away)': '8', 'Corner Kicks (home)': '8', 'Corner Kicks (away)': '4', 'Offsides (home)': '3', 'Offsides (away)': '7', 'Throw-ins (home)': '21', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '7', 'Fouls (home)': '6', 'Fouls (away)': '12', 'Total Passes (home)': '527', 'Total Passes (away)': '263', 'Completed Passes (home)': '434', 'Completed Passes (away)': '174', 'Tackles (home)': '14', 'Tackles (away)': '18', 'Attacks (home)': '93', 'Attacks (away)': '109', 'Dangerous Attacks (home)': '59', 'Dangerous Attacks (away)': '41'}, {'home_team': 'Tottenham', 'away_team': 'Manchester City', 'home_score': '1', 'away_score': '0', 'match_id': 'lvfjrsy8', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '9', 'Blocked Shots (home)': '5', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '9', 'Free Kicks (away)': '14', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '11', 'Offsides (home)': '3', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '11', 'Fouls (away)': '8', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '293', 'Total Passes (away)': '548', 'Completed Passes (home)': '227', 'Completed Passes (away)': '461', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '88', 'Attacks (away)': '146', 'Dangerous Attacks (home)': '27', 'Dangerous Attacks (away)': '66'}, {'home_team': 'Newcastle', 'away_team': 'West Ham', 'home_score': '2', 'away_score': '4', 'match_id': 'hC0sp36e', 'Ball Possession (home)': '47%', 'Ball Possession (away)': '53%', 'Goal Attempts (home)': '17', 'Goal Attempts (away)': '18', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '9', 'Shots off Goal (home)': '7', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '7', 'Blocked Shots (away)': '5', 'Free Kicks (home)': '6', 'Free Kicks (away)': '5', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '4', 'Fouls (away)': '3', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '0', 'Total Passes (home)': '401', 'Total Passes (away)': '472', 'Completed Passes (home)': '339', 'Completed Passes (away)': '401', 'Tackles (home)': '9', 'Tackles (away)': '23', 'Attacks (home)': '93', 'Attacks (away)': '104', 'Dangerous Attacks (home)': '50', 'Dangerous Attacks (away)': '60'}, {'home_team': 'Norwich', 'away_team': 'Liverpool', 'home_score': '0', 'away_score': '3', 'match_id': 'zyjnqNL1', 'Ball Possession (home)': '50%', 'Ball Possession (away)': '50%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '19', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '14', 'Free Kicks (away)': '6', 'Corner Kicks (home)': '3', 'Corner Kicks (away)': '11', 'Offsides (home)': '2', 'Offsides (away)': '0', 'Throw-ins (home)': '16', 'Throw-ins (away)': '19', 'Goalkeeper Saves (home)': '5', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '4', 'Fouls (away)': '14', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '1', 'Total Passes (home)': '518', 'Total Passes (away)': '512', 'Completed Passes (home)': '440', 'Completed Passes (away)': '432', 'Tackles (home)': '19', 'Tackles (away)': '17', 'Attacks (home)': '87', 'Attacks (away)': '111', 'Dangerous Attacks (home)': '40', 'Dangerous Attacks (away)': '68'}, {'home_team': 'Burnley', 'away_team': 'Brighton', 'home_score': '1', 'away_score': '2', 'match_id': '2T2ahRbF', 'Ball Possession (home)': '36%', 'Ball Possession (away)': '64%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '14', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '8', 'Shots off Goal (home)': '8', 'Shots off Goal (away)': '4', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '6', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '7', 'Corner Kicks (away)': '6', 'Offsides (home)': '1', 'Offsides (away)': '0', 'Throw-ins (home)': '23', 'Throw-ins (away)': '24', 'Goalkeeper Saves (home)': '6', 'Goalkeeper Saves (away)': '2', 'Fouls (home)': '10', 'Fouls (away)': '7', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '1', 'Total Passes (home)': '259', 'Total Passes (away)': '518', 'Completed Passes (home)': '181', 'Completed Passes (away)': '421', 'Tackles (home)': '16', 'Tackles (away)': '16', 'Attacks (home)': '81', 'Attacks (away)': '81', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '42'}, {'home_team': 'Chelsea', 'away_team': 'Crystal Palace', 'home_score': '3', 'away_score': '0', 'match_id': '0EL2ioEL', 'Ball Possession (home)': '62%', 'Ball Possession (away)': '38%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '4', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '1', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '2', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '15', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '2', 'Offsides (home)': '0', 'Offsides (away)': '1', 'Throw-ins (home)': '17', 'Throw-ins (away)': '14', 'Goalkeeper Saves (home)': '1', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '15', 'Fouls (away)': '11', 'Total Passes (home)': '678', 'Total Passes (away)': '423', 'Completed Passes (home)': '618', 'Completed Passes (away)': '349', 'Tackles (home)': '21', 'Tackles (away)': '11', 'Attacks (home)': '148', 'Attacks (away)': '50', 'Dangerous Attacks (home)': '81', 'Dangerous Attacks (away)': '17'}, {'home_team': 'Everton', 'away_team': 'Southampton', 'home_score': '3', 'away_score': '1', 'match_id': 'rwB7j5TR', 'Ball Possession (home)': '48%', 'Ball Possession (away)': '52%', 'Goal Attempts (home)': '14', 'Goal Attempts (away)': '6', 'Shots on Goal (home)': '6', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '1', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '2', 'Free Kicks (home)': '15', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '6', 'Corner Kicks (away)': '8', 'Offsides (home)': '0', 'Offsides (away)': '0', 'Throw-ins (home)': '28', 'Throw-ins (away)': '27', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '13', 'Fouls (away)': '15', 'Yellow Cards (home)': '2', 'Yellow Cards (away)': '0', 'Total Passes (home)': '337', 'Total Passes (away)': '370', 'Completed Passes (home)': '235', 'Completed Passes (away)': '256', 'Tackles (home)': '23', 'Tackles (away)': '21', 'Attacks (home)': '78', 'Attacks (away)': '106', 'Dangerous Attacks (home)': '44', 'Dangerous Attacks (away)': '44'}, {'home_team': 'Leicester', 'away_team': 'Wolves', 'home_score': '1', 'away_score': '0', 'match_id': 'pncZoPyq', 'Ball Possession (home)': '56%', 'Ball Possession (away)': '44%', 'Goal Attempts (home)': '9', 'Goal Attempts (away)': '17', 'Shots on Goal (home)': '5', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '3', 'Shots off Goal (away)': '7', 'Blocked Shots (home)': '1', 'Blocked Shots (away)': '7', 'Free Kicks (home)': '14', 'Free Kicks (away)': '11', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '5', 'Offsides (away)': '4', 'Throw-ins (home)': '26', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '3', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '6', 'Fouls (away)': '10', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '584', 'Total Passes (away)': '443', 'Completed Passes (home)': '505', 'Completed Passes (away)': '365', 'Tackles (home)': '15', 'Tackles (away)': '20', 'Attacks (home)': '108', 'Attacks (away)': '92', 'Dangerous Attacks (home)': '33', 'Dangerous Attacks (away)': '32'}, {'home_team': 'Watford', 'away_team': 'Aston Villa', 'home_score': '3', 'away_score': '2', 'match_id': '2srY6QD8', 'Ball Possession (home)': '38%', 'Ball Possession (away)': '62%', 'Goal Attempts (home)': '13', 'Goal Attempts (away)': '11', 'Shots on Goal (home)': '7', 'Shots on Goal (away)': '2', 'Shots off Goal (home)': '4', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '2', 'Blocked Shots (away)': '3', 'Free Kicks (home)': '15', 'Free Kicks (away)': '16', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '4', 'Offsides (home)': '0', 'Offsides (away)': '2', 'Throw-ins (home)': '17', 'Throw-ins (away)': '21', 'Goalkeeper Saves (home)': '0', 'Goalkeeper Saves (away)': '4', 'Fouls (home)': '18', 'Fouls (away)': '13', 'Yellow Cards (home)': '3', 'Yellow Cards (away)': '1', 'Total Passes (home)': '317', 'Total Passes (away)': '508', 'Completed Passes (home)': '234', 'Completed Passes (away)': '434', 'Tackles (home)': '15', 'Tackles (away)': '13', 'Attacks (home)': '46', 'Attacks (away)': '120', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '45'}, {'home_team': 'Manchester Utd', 'away_team': 'Leeds', 'home_score': '5', 'away_score': '1', 'match_id': 'EL1woqik', 'Ball Possession (home)': '49%', 'Ball Possession (away)': '51%', 'Goal Attempts (home)': '16', 'Goal Attempts (away)': '10', 'Shots on Goal (home)': '8', 'Shots on Goal (away)': '3', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '6', 'Blocked Shots (home)': '3', 'Blocked Shots (away)': '1', 'Free Kicks (home)': '12', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '5', 'Corner Kicks (away)': '4', 'Offsides (home)': '2', 'Offsides (away)': '3', 'Throw-ins (home)': '27', 'Throw-ins (away)': '17', 'Goalkeeper Saves (home)': '2', 'Goalkeeper Saves (away)': '3', 'Fouls (home)': '11', 'Fouls (away)': '9', 'Yellow Cards (home)': '1', 'Yellow Cards (away)': '2', 'Total Passes (home)': '422', 'Total Passes (away)': '438', 'Completed Passes (home)': '332', 'Completed Passes (away)': '333', 'Tackles (home)': '6', 'Tackles (away)': '23', 'Attacks (home)': '114', 'Attacks (away)': '91', 'Dangerous Attacks (home)': '30', 'Dangerous Attacks (away)': '35'}, {'home_team': 'Brentford', 'away_team': 'Arsenal', 'home_score': '2', 'away_score': '0', 'match_id': '863eg7q9', 'Ball Possession (home)': '35%', 'Ball Possession (away)': '65%', 'Goal Attempts (home)': '8', 'Goal Attempts (away)': '22', 'Shots on Goal (home)': '3', 'Shots on Goal (away)': '4', 'Shots off Goal (home)': '5', 'Shots off Goal (away)': '14', 'Blocked Shots (home)': '0', 'Blocked Shots (away)': '4', 'Free Kicks (home)': '9', 'Free Kicks (away)': '13', 'Corner Kicks (home)': '2', 'Corner Kicks (away)': '5', 'Offsides (home)': '1', 'Offsides (away)': '1', 'Throw-ins (home)': '19', 'Throw-ins (away)': '26', 'Goalkeeper Saves (home)': '4', 'Goalkeeper Saves (away)': '1', 'Fouls (home)': '12', 'Fouls (away)': '8', 'Total Passes (home)': '309', 'Total Passes (away)': '568', 'Completed Passes (home)': '194', 'Completed Passes (away)': '486', 'Tackles (home)': '19', 'Tackles (away)': '9', 'Attacks (home)': '83', 'Attacks (away)': '137', 'Dangerous Attacks (home)': '26', 'Dangerous Attacks (away)': '76'}]}
match_df = create_dataframe(matches_data_with_stats)
Print the first 5 rows of the dataset
match_df.head()
| home_team | away_team | home_score | away_score | match_id | Ball Possession (home) | Ball Possession (away) | Goal Attempts (home) | Goal Attempts (away) | Shots on Goal (home) | ... | Completed Passes (away) | Tackles (home) | Tackles (away) | Attacks (home) | Attacks (away) | Dangerous Attacks (home) | Dangerous Attacks (away) | season | Red Cards (home) | Red Cards (away) | |
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 0 | Arsenal | Everton | 5 | 1 | CWuae5l9 | 74% | 26% | 26 | 6 | 9 | ... | 151 | 12 | 21 | 136 | 55 | 89 | 25 | 2021/2022 | 0 | 0 |
| 1 | Brentford | Leeds | 1 | 2 | QZq3fP3F | 49% | 51% | 14 | 14 | 5 | ... | 317 | 12 | 10 | 105 | 109 | 31 | 46 | 2021/2022 | 1 | 0 |
| 2 | Brighton | West Ham | 3 | 1 | 8bZ7gqJL | 50% | 50% | 18 | 7 | 7 | ... | 377 | 12 | 14 | 100 | 88 | 54 | 62 | 2021/2022 | 0 | 0 |
| 3 | Burnley | Newcastle | 1 | 2 | nkYBh3YR | 51% | 49% | 12 | 8 | 5 | ... | 240 | 11 | 22 | 116 | 80 | 57 | 31 | 2021/2022 | 0 | 0 |
| 4 | Chelsea | Watford | 2 | 1 | IXKwlNtq | 72% | 28% | 19 | 8 | 8 | ... | 202 | 32 | 25 | 147 | 63 | 66 | 32 | 2021/2022 | 0 | 0 |
5 rows × 42 columns
Figure out the number of rows and columns in the dataset
match_df.shape
(989, 42)
Print the column names
match_df.columns
Index(['home_team', 'away_team', 'home_score', 'away_score', 'match_id',
'Ball Possession (home)', 'Ball Possession (away)',
'Goal Attempts (home)', 'Goal Attempts (away)', 'Shots on Goal (home)',
'Shots on Goal (away)', 'Shots off Goal (home)',
'Shots off Goal (away)', 'Blocked Shots (home)', 'Blocked Shots (away)',
'Free Kicks (home)', 'Free Kicks (away)', 'Corner Kicks (home)',
'Corner Kicks (away)', 'Offsides (home)', 'Offsides (away)',
'Throw-ins (home)', 'Throw-ins (away)', 'Goalkeeper Saves (home)',
'Goalkeeper Saves (away)', 'Fouls (home)', 'Fouls (away)',
'Yellow Cards (home)', 'Yellow Cards (away)', 'Total Passes (home)',
'Total Passes (away)', 'Completed Passes (home)',
'Completed Passes (away)', 'Tackles (home)', 'Tackles (away)',
'Attacks (home)', 'Attacks (away)', 'Dangerous Attacks (home)',
'Dangerous Attacks (away)', 'season', 'Red Cards (home)',
'Red Cards (away)'],
dtype='object')
Check the data type of all columns
print(match_df.dtypes)
home_team object away_team object home_score object away_score object match_id object Ball Possession (home) object Ball Possession (away) object Goal Attempts (home) object Goal Attempts (away) object Shots on Goal (home) object Shots on Goal (away) object Shots off Goal (home) object Shots off Goal (away) object Blocked Shots (home) object Blocked Shots (away) object Free Kicks (home) object Free Kicks (away) object Corner Kicks (home) object Corner Kicks (away) object Offsides (home) object Offsides (away) object Throw-ins (home) object Throw-ins (away) object Goalkeeper Saves (home) object Goalkeeper Saves (away) object Fouls (home) object Fouls (away) object Yellow Cards (home) object Yellow Cards (away) object Total Passes (home) object Total Passes (away) object Completed Passes (home) object Completed Passes (away) object Tackles (home) object Tackles (away) object Attacks (home) object Attacks (away) object Dangerous Attacks (home) object Dangerous Attacks (away) object season object Red Cards (home) object Red Cards (away) object dtype: object
Check if there are any Null values in the columns
print(match_df.isnull().sum())
home_team 0 away_team 0 home_score 0 away_score 0 match_id 0 Ball Possession (home) 3 Ball Possession (away) 3 Goal Attempts (home) 3 Goal Attempts (away) 3 Shots on Goal (home) 3 Shots on Goal (away) 3 Shots off Goal (home) 3 Shots off Goal (away) 3 Blocked Shots (home) 3 Blocked Shots (away) 3 Free Kicks (home) 3 Free Kicks (away) 3 Corner Kicks (home) 3 Corner Kicks (away) 3 Offsides (home) 3 Offsides (away) 3 Throw-ins (home) 3 Throw-ins (away) 3 Goalkeeper Saves (home) 3 Goalkeeper Saves (away) 3 Fouls (home) 3 Fouls (away) 3 Yellow Cards (home) 0 Yellow Cards (away) 0 Total Passes (home) 3 Total Passes (away) 3 Completed Passes (home) 3 Completed Passes (away) 3 Tackles (home) 3 Tackles (away) 3 Attacks (home) 3 Attacks (away) 3 Dangerous Attacks (home) 3 Dangerous Attacks (away) 3 season 0 Red Cards (home) 0 Red Cards (away) 0 dtype: int64
Check if there are any duplicate match ids in the dataset
duplicate_count = match_df['match_id'].duplicated().sum()
print(duplicate_count)
609
Find the number of teams in the dataset
unique_home_teams = match_df['home_team'].unique()
unique_away_teams = match_df['away_team'].unique()
# Combine the unique home and away teams and find the unique values again
unique_teams = np.unique(np.concatenate((unique_home_teams, unique_away_teams)))
# Count the number of unique teams
num_unique_teams = len(unique_teams)
print(num_unique_teams)
20
Remove the rows with duplicate match ids
match_df = match_df.drop_duplicates(subset='match_id', keep='first')
# Verify the change
match_df.shape
(380, 42)
Drop the season and the match id column as they are not needed for analysis
match_df.drop(['season', 'match_id'], axis=1, inplace=True)
# Verify
match_df.shape
(380, 40)
Remove the % symbol on the ball possession
match_df['Ball Possession (home)'] = match_df['Ball Possession (home)'].str.replace('%', '')
match_df['Ball Possession (away)'] = match_df['Ball Possession (away)'].str.replace('%', '')
All columns are of the object data type, so convert them to the appropriate data types
int_columns = [
'home_score', 'away_score', 'Ball Possession (home)', 'Ball Possession (away)',
'Goal Attempts (home)', 'Goal Attempts (away)', 'Shots on Goal (home)',
'Shots on Goal (away)', 'Shots off Goal (home)', 'Shots off Goal (away)',
'Blocked Shots (home)', 'Blocked Shots (away)', 'Free Kicks (home)',
'Free Kicks (away)', 'Corner Kicks (home)', 'Corner Kicks (away)',
'Offsides (home)', 'Offsides (away)', 'Throw-ins (home)', 'Throw-ins (away)',
'Goalkeeper Saves (home)', 'Goalkeeper Saves (away)', 'Fouls (home)',
'Fouls (away)', 'Yellow Cards (home)', 'Yellow Cards (away)',
'Total Passes (home)', 'Total Passes (away)', 'Completed Passes (home)',
'Completed Passes (away)', 'Tackles (home)', 'Tackles (away)',
'Attacks (home)', 'Attacks (away)', 'Dangerous Attacks (home)',
'Dangerous Attacks (away)', 'Red Cards (home)', 'Red Cards (away)'
]
match_df[int_columns] = match_df[int_columns].apply(pd.to_numeric, errors='coerce')
print(match_df.dtypes)
home_team object away_team object home_score int64 away_score int64 Ball Possession (home) float64 Ball Possession (away) float64 Goal Attempts (home) float64 Goal Attempts (away) float64 Shots on Goal (home) float64 Shots on Goal (away) float64 Shots off Goal (home) float64 Shots off Goal (away) float64 Blocked Shots (home) float64 Blocked Shots (away) float64 Free Kicks (home) float64 Free Kicks (away) float64 Corner Kicks (home) float64 Corner Kicks (away) float64 Offsides (home) float64 Offsides (away) float64 Throw-ins (home) float64 Throw-ins (away) float64 Goalkeeper Saves (home) float64 Goalkeeper Saves (away) float64 Fouls (home) float64 Fouls (away) float64 Yellow Cards (home) int64 Yellow Cards (away) int64 Total Passes (home) float64 Total Passes (away) float64 Completed Passes (home) float64 Completed Passes (away) float64 Tackles (home) float64 Tackles (away) float64 Attacks (home) float64 Attacks (away) float64 Dangerous Attacks (home) float64 Dangerous Attacks (away) float64 Red Cards (home) int64 Red Cards (away) int64 dtype: object
match_df.to_csv('epl_2021-2022_season_data.csv', index=False)
match_df.to_excel('epl_2021-2022_season_data.xlsx', index=False, engine='openpyxl')
Home vs Away performance
# Calculate the mean for home team performance metrics
home_goals_mean = match_df['home_score'].mean()
home_ball_possession_mean = match_df['Ball Possession (home)'].mean()
home_shots_on_goal_mean = match_df['Shots on Goal (home)'].mean()
# Calculate the mean for away team performance metrics
away_goals_mean = match_df['away_score'].mean()
away_ball_possession_mean = match_df['Ball Possession (away)'].mean()
away_shots_on_goal_mean = match_df['Shots on Goal (away)'].mean()
# Print the results
print("Home Team Performance:")
print(f"Average goals scored: {home_goals_mean:.2f}")
print(f"Average ball possession: {home_ball_possession_mean:.2f}%")
print(f"Average shots on goal: {home_shots_on_goal_mean:.2f}")
print("\nAway Team Performance:")
print(f"Average goals scored: {away_goals_mean:.2f}")
print(f"Average ball possession: {away_ball_possession_mean:.2f}%")
print(f"Average shots on goal: {away_shots_on_goal_mean:.2f}")
Home Team Performance: Average goals scored: 1.51 Average ball possession: 50.72% Average shots on goal: 4.70 Away Team Performance: Average goals scored: 1.31 Average ball possession: 49.28% Average shots on goal: 4.13
Analyze key metrics(goals scored, ball possession, tackles and goalkeeper saves) selecting the top 10 teams for each metric during the season
# group the data by home team and away team
grouped_data = match_df.groupby(['home_team', 'away_team'])
# calculate the mean of each performance metric for each team
team_stats = grouped_data.mean()
# get the top 10 teams for each metric separately for home team
top_home_goal_scorers = team_stats.groupby('home_team')['home_score'].mean().sort_values(ascending=False).head(10)
top_home_ball_possession = team_stats.groupby('home_team')['Ball Possession (home)'].mean().sort_values(ascending=False).head(10)
top_home_tacklers = team_stats.groupby('home_team')['Tackles (home)'].mean().sort_values(ascending=False).head(10)
top_home_saves = team_stats.groupby('home_team')['Goalkeeper Saves (home)'].mean().sort_values(ascending=False).head(10)
# get the top 10 teams for each metric separately for away team
top_away_goal_scorers = team_stats.groupby('away_team')['away_score'].mean().sort_values(ascending=False).head(10)
top_away_ball_possession = team_stats.groupby('away_team')['Ball Possession (away)'].mean().sort_values(ascending=False).head(10)
top_away_tacklers = team_stats.groupby('away_team')['Tackles (away)'].mean().sort_values(ascending=False).head(10)
top_away_saves = team_stats.groupby('away_team')['Goalkeeper Saves (away)'].mean().sort_values(ascending=False).head(10)
print("Top 10 teams when it comes to goals during home matches:")
top_home_goal_scorers
Top 10 teams when it comes to goals during home matches:
home_team Manchester City 3.052632 Liverpool 2.578947 Tottenham 2.000000 Chelsea 1.947368 Arsenal 1.842105 Leicester 1.789474 West Ham 1.736842 Manchester Utd 1.684211 Aston Villa 1.526316 Crystal Palace 1.421053 Name: home_score, dtype: float64
print("Top 10 teams when it comes to ball possession during home matches:")
top_home_ball_possession
Top 10 teams when it comes to ball possession during home matches:
home_team Manchester City 69.052632 Liverpool 66.052632 Chelsea 63.315789 Arsenal 56.052632 Leeds 55.722222 Brighton 54.894737 Crystal Palace 53.368421 Manchester Utd 53.263158 Leicester 52.736842 Tottenham 51.368421 Name: Ball Possession (home), dtype: float64
print("Top 10 teams when it comes to tackles during home matches:")
top_home_tacklers
Top 10 teams when it comes to tackles during home matches:
home_team Leeds 19.500000 Everton 17.842105 Leicester 17.789474 Wolves 17.421053 Newcastle 17.052632 Brentford 16.789474 Crystal Palace 16.526316 Chelsea 16.473684 Aston Villa 16.421053 Tottenham 16.315789 Name: Tackles (home), dtype: float64
print("Top 10 teams when it comes to Goalkeeper saves during home matches:")
top_home_saves
Top 10 teams when it comes to Goalkeeper saves during home matches:
home_team Leeds 3.833333 Norwich 3.684211 Leicester 3.473684 Southampton 3.368421 Burnley 3.315789 Newcastle 3.210526 Wolves 3.052632 Brighton 3.052632 Everton 3.000000 Watford 3.000000 Name: Goalkeeper Saves (home), dtype: float64
print("Top 10 teams when it comes to goals during away matches:")
top_away_goal_scorers
Top 10 teams when it comes to goals during away matches:
away_team Liverpool 2.368421 Manchester City 2.157895 Chelsea 2.052632 Tottenham 1.631579 Leicester 1.473684 West Ham 1.421053 Arsenal 1.368421 Brentford 1.368421 Manchester Utd 1.315789 Leeds 1.210526 Name: away_score, dtype: float64
print("Top 10 teams when it comes to ball possession during away matches:")
top_away_ball_possession
Top 10 teams when it comes to ball possession during away matches:
away_team Manchester City 67.526316 Chelsea 60.888889 Liverpool 60.526316 Brighton 54.368421 Tottenham 52.157895 Manchester Utd 51.833333 Leicester 51.526316 Leeds 50.473684 Southampton 50.263158 Arsenal 50.052632 Name: Ball Possession (away), dtype: float64
print("Top 10 teams when it comes to tackles during away matches:")
top_away_tacklers
Top 10 teams when it comes to tackles during away matches:
away_team Leeds 22.052632 Brighton 19.368421 Everton 19.263158 Leicester 18.526316 Wolves 18.000000 Newcastle 17.631579 Crystal Palace 16.947368 Aston Villa 16.842105 Norwich 16.736842 Manchester Utd 16.722222 Name: Tackles (away), dtype: float64
print("Top 10 teams when it comes to Goalkeeper saves during away matches:")
top_away_saves
Top 10 teams when it comes to Goalkeeper saves during away matches:
away_team Leeds 4.315789 Norwich 4.052632 Manchester Utd 4.000000 Brentford 4.000000 Burnley 3.789474 Leicester 3.789474 Wolves 3.684211 Everton 3.578947 West Ham 3.210526 Watford 3.210526 Name: Goalkeeper Saves (away), dtype: float64
Analyze the teams with the highest number of yellow and red cards to identify the most aggressive or undisciplined teams in the league.
# get the top 10 teams for each metric separately for home team
team_card_stats = grouped_data.sum()
top_yellow_cards_home = team_card_stats.groupby('home_team')['Yellow Cards (home)'].sum().sort_values(ascending=False).head(10)
top_red_cards_home = team_card_stats.groupby('home_team')['Red Cards (home)'].sum().sort_values(ascending=False).head(10)
top_yellow_cards_away = team_card_stats.groupby('away_team')['Yellow Cards (away)'].sum().sort_values(ascending=False).head(10)
top_red_cards_away = team_card_stats.groupby('away_team')['Red Cards (away)'].sum().sort_values(ascending=False).head(10)
print("Teams which had the highest number of yellow cards during home matches: ")
print(top_yellow_cards_home)
Teams which had the highest number of yellow cards during home matches: home_team Leeds 52 Everton 44 Newcastle 36 Watford 35 Tottenham 34 Burnley 34 Crystal Palace 34 Arsenal 33 Aston Villa 33 Southampton 33 Name: Yellow Cards (home), dtype: int64
print("Teams which had the highest number of yellow cards during away matches: ")
print(top_yellow_cards_away)
Teams which had the highest number of yellow cards during away matches: away_team Leeds 48 Aston Villa 48 Manchester Utd 46 Newcastle 45 Brighton 41 Everton 38 Crystal Palace 35 Tottenham 35 Brentford 34 Burnley 34 Name: Yellow Cards (away), dtype: int64
print("Teams which had the highest number of red cards during home matches: ")
print(top_red_cards_home)
Teams which had the highest number of red cards during home matches: home_team Everton 5 Aston Villa 2 Brentford 2 Newcastle 2 Arsenal 1 Watford 1 Southampton 1 Manchester Utd 1 Manchester City 1 Wolves 1 Name: Red Cards (home), dtype: int64
print("Teams which had the highest number of red cards during away matches: ")
print(top_red_cards_away)
Teams which had the highest number of red cards during away matches: away_team Arsenal 3 West Ham 3 Watford 2 Burnley 2 Leicester 1 Tottenham 1 Southampton 1 Norwich 1 Manchester Utd 1 Liverpool 1 Name: Red Cards (away), dtype: int64
Identify the key metrics that have a strong relationship with a win
# Create a 'home_win' column
match_df['home_win'] = match_df.apply(lambda row: 1 if row['home_score'] > row['away_score'] else (-1 if row['home_score'] < row['away_score'] else 0), axis=1)
# Calculate the correlation matrix
correlation_matrix = match_df.corr()
# Select the 'home_win' column from the correlation matrix
home_win_correlation = correlation_matrix['home_win']
# Sort the correlations in descending order
sorted_correlations = home_win_correlation.abs().sort_values(ascending=False)
# Select the top 5 factors
top_5_factors = sorted_correlations.head(5)
# Print the correlation of 'home_win' with other columns
print(top_5_factors)
home_win 1.000000 away_score 0.687440 home_score 0.641358 Shots on Goal (away) 0.498933 Shots on Goal (home) 0.458056 Name: home_win, dtype: float64
Identify which teams had the most number of completed passes both home and away.
team_passes_stats = grouped_data.sum()
top_passes_home = team_passes_stats.groupby('home_team')['Completed Passes (home)'].sum().sort_values(ascending=False).head(10)
top_passes_away = team_passes_stats.groupby('away_team')['Completed Passes (away)'].sum().sort_values(ascending=False).head(10)
print("The top 10 teams that had the largest number of completed passes during home games: ")
print(top_passes_home)
The top 10 teams that had the largest number of completed passes during home games: home_team Manchester City 11817.0 Liverpool 10720.0 Chelsea 9835.0 Manchester Utd 8278.0 Arsenal 8070.0 Tottenham 8045.0 Leicester 7780.0 Brighton 7770.0 Wolves 7298.0 Crystal Palace 7009.0 Name: Completed Passes (home), dtype: float64
print("The top 10 teams that had the largest number of completed passes during away games: ")
print(top_passes_away)
The top 10 teams that had the largest number of completed passes during away games: away_team Manchester City 11434.0 Liverpool 9158.0 Chelsea 9049.0 Tottenham 8117.0 Brighton 7535.0 Leicester 7291.0 Arsenal 7114.0 Manchester Utd 6909.0 West Ham 6893.0 Wolves 6763.0 Name: Completed Passes (away), dtype: float64
Figure out the relationship between ball possession and completed passes
possession_passes = match_df[['home_team', 'away_team', 'Ball Possession (home)', 'Ball Possession (away)', 'Completed Passes (home)', 'Completed Passes (away)']]
possession_passes_home = possession_passes[['home_team', 'Ball Possession (home)', 'Completed Passes (home)']]
possession_passes_home = possession_passes_home.rename(columns={'home_team': 'team',
'Ball Possession (home)': 'possession',
'Completed Passes (home)': 'passes'})
possession_passes_away = possession_passes[['away_team', 'Ball Possession (away)', 'Completed Passes (away)']]
possession_passes_away = possession_passes_away.rename(columns={'away_team': 'team',
'Ball Possession (away)': 'possession',
'Completed Passes (away)': 'passes'})
possession_passes_combined = pd.concat([possession_passes_home, possession_passes_away])
fig = px.scatter(possession_passes_combined, x='possession', y='passes', color='team',
title='Relationship between Ball Possession and Completed Passes')
fig.show()
plt.figure(figsize=(10, 8))
teams = possession_passes_combined['team'].unique()
for team in teams:
temp_df = possession_passes_combined[possession_passes_combined['team'] == team]
plt.scatter(temp_df['possession'], temp_df['passes'], label=team)
plt.legend(bbox_to_anchor=(1.05, 1), loc='upper left')
plt.xlabel('possession')
plt.ylabel('passes')
plt.title('Relationship between Ball Possession and Completed Passes')
plt.show()
Figure out the total goals that were scored by each team
# Calculate total goals scored by each team
home_goals = match_df.groupby('home_team')['home_score'].sum()
away_goals = match_df.groupby('away_team')['away_score'].sum()
total_goals = home_goals.add(away_goals, fill_value=0).sort_values(ascending=False)
# Create a bar chart of total goals scored by each team
fig = go.Figure(go.Bar(x=total_goals.index, y=total_goals))
fig.update_layout(title='Total Goals Scored by Each Team')
fig.show()
plt.figure(figsize=(10,8))
plt.bar(total_goals.index, total_goals)
plt.xlabel('Teams')
plt.ylabel('Total Goals')
plt.title('Total Goals Scored by Each Team')
plt.xticks(rotation=90)
plt.show()
Visualize the number of fouls commited by the top 3 teams which have the most goals
# Filter the dataset for the teams of interest
teams = ["Manchester City", "Chelsea", "Liverpool"]
filtered_df = match_df[(match_df['home_team'].isin(teams)) | (match_df['away_team'].isin(teams))]
# Calculate the total fouls for each team in home and away matches
fouls_summary = filtered_df.groupby(['home_team', 'away_team'])[['Fouls (home)', 'Fouls (away)']].sum().reset_index()
# Create the bar chart
fig = go.Figure()
for team in teams:
home_fouls = fouls_summary.loc[fouls_summary['home_team'] == team, 'Fouls (home)'].sum()
away_fouls = fouls_summary.loc[fouls_summary['away_team'] == team, 'Fouls (away)'].sum()
fig.add_trace(go.Bar(x=[team], y=[home_fouls], name='Home'))
fig.add_trace(go.Bar(x=[team], y=[away_fouls], name='Away'))
# Set the layout of the chart
fig.update_layout(
title='Total Fouls Made in Home and Away Matches by Manchester City, Chelsea, and Liverpool',
xaxis_title='Team',
yaxis_title='Number of Fouls',
barmode='group',
)
# Show the chart
fig.show()
# Calculate total fouls for each team
total_fouls = {}
for team in teams:
home_fouls = fouls_summary.loc[fouls_summary['home_team'] == team, 'Fouls (home)'].sum()
away_fouls = fouls_summary.loc[fouls_summary['away_team'] == team, 'Fouls (away)'].sum()
total_fouls[team] = [home_fouls, away_fouls]
# Prepare data for plotting
teams = list(total_fouls.keys())
home_fouls = [total_fouls[team][0] for team in teams]
away_fouls = [total_fouls[team][1] for team in teams]
# Create bar chart
x = np.arange(len(teams)) # the label locations
width = 0.35 # the width of the bars
fig, ax = plt.subplots()
rects1 = ax.bar(x - width/2, home_fouls, width, label='Home')
rects2 = ax.bar(x + width/2, away_fouls, width, label='Away')
# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_xlabel('Team')
ax.set_ylabel('Number of Fouls')
ax.set_title('Total Fouls Made in Home and Away Matches by Manchester City, Chelsea, and Liverpool')
ax.set_xticks(x)
ax.set_xticklabels(teams)
ax.legend()
fig.tight_layout()
plt.show()
Visualize some metrics during home matches for the top 3 teams that scored the most goals
# Filter the dataset for the teams of interest
teams = ['Chelsea', 'Liverpool', 'Manchester City']
metrics = ['Ball Possession (home)', 'Completed Passes (home)', 'Shots on Goal (home)']
# Define the data for the chart
data = []
for team in teams:
team_data = []
for metric in metrics:
value = match_df[match_df['home_team'] == team][metric].mean()
team_data.append(value)
data.append(go.Bar(name=team, x=metrics, y=team_data))
# Define the layout of the chart
layout = go.Layout(title='Team Performance Metrics During Home Matches',
xaxis=dict(title='Metric'),
yaxis=dict(title='Average Value'))
# Create the chart
fig = go.Figure(data=data, layout=layout)
# Show the chart
fig.show()
# Calculate metrics for each team
team_data = {}
for team in teams:
metric_data = []
for metric in metrics:
value = match_df[match_df['home_team'] == team][metric].mean()
metric_data.append(value)
team_data[team] = metric_data
# Prepare data for plotting
x = np.arange(len(metrics)) # the label locations
width = 0.2 # the width of the bars
fig, ax = plt.subplots()
# Create bar chart
rects = []
for i, team in enumerate(teams):
rects.append(ax.bar(x - width + i*width, team_data[team], width, label=team))
# Add some text for labels, title and custom x-axis tick labels, etc.
ax.set_xlabel('Metric')
ax.set_ylabel('Average Value')
ax.set_title('Team Performance Metrics During Home Matches')
ax.set_xticks(x)
ax.set_xticklabels(metrics)
ax.legend()
fig.tight_layout()
plt.show()
def get_winning_team_squad():
"""
This function scrapes the squad list of the winning team(Manchester City) for the 2021/2022 season of the Premier League.
Args:
None
Returns:
A list of dictionaries containing the name, age, date of birth, and occupation of each player in the squad.
"""
chrome_options = Options()
chrome_options.add_experimental_option('excludeSwitches', ['enable-logging','enable-automation'])
chrome_options.add_experimental_option('useAutomationExtension', False)
driver = webdriver.Chrome(
service=ChromeService(ChromeDriverManager().install()), options=chrome_options)
driver.get("https://www.flashscore.com/")
# Click on the Premier League button
premier_league_button = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[contains(@href, "/football/england/premier-league/")]'))
)
premier_league_button.click()
# Click on the archive button
archive_button = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[@href="/football/england/premier-league/archive/"]'))
)
archive_button.click()
# Click on the winning team for the 2021/2022 season
winner_team = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//div[@class="archive__winner"]//a[contains(@href, "/team/manchester-city/")]'))
)
driver.execute_script("arguments[0].scrollIntoView(true);", winner_team)
time.sleep(1)
winner_team.click()
time.sleep(2)
# Click on the Squad tab
squad_tab = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//a[@href="/team/manchester-city/Wtn9Stg0/squad/"]'))
)
squad_tab.click()
time.sleep(2)
player_data = []
occupations = driver.find_elements_by_xpath('//div[@class="lineup__rows"]')
max_players = 22
player_counter = 0
for occupation in occupations:
occupation_name = occupation.find_element_by_xpath('.//div[@class="lineup__title"]').text
player_rows = occupation.find_elements_by_xpath('.//div[@class="lineup__row"]')
for player_row in player_rows:
name_element = player_row.find_element_by_xpath('.//a[contains(@class, "lineup__cell--name")]')
player_name = name_element.text
player_url = name_element.get_attribute('href')
# Open the player's profile in a new tab
driver.execute_script("window.open('');")
driver.switch_to.window(driver.window_handles[-1])
driver.get(player_url)
age_element = WebDriverWait(driver, 10).until(
EC.presence_of_element_located((By.XPATH, '//div[@class="heading__info--birthdate"]/span'))
)
age_dob = age_element.text.strip().split(' ')
player_age = age_dob[-2]
player_dob = age_dob[-1].strip('()')
player_data.append({
'occupation': occupation_name,
'name': player_name,
'age': player_age,
'dob': player_dob
})
# Close the player's profile tab and switch back to the main tab
driver.close()
driver.switch_to.window(driver.window_handles[0])
player_counter += 1
if player_counter >= max_players:
break
if player_counter >= max_players:
break
driver.quit()
return player_data
# If the script is being run as the main module, get the squad data of the winning team.
if __name__ == "__main__":
player_data = get_winning_team_squad()
====== WebDriver manager ====== Current google-chrome version is 114.0.5735 Get LATEST chromedriver version for 114.0.5735 google-chrome Trying to download new driver from https://chromedriver.storage.googleapis.com/114.0.5735.90/chromedriver_mac64.zip Driver has been saved in cache [/Users/macbookpro/.wdm/drivers/chromedriver/mac64/114.0.5735.90] /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/ipykernel_launcher.py:49: DeprecationWarning: find_elements_by_* commands are deprecated. Please use find_elements() instead /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/selenium/webdriver/remote/webelement.py:393: UserWarning: find_element_by_* commands are deprecated. Please use find_element() instead /Library/Frameworks/Python.framework/Versions/3.7/lib/python3.7/site-packages/selenium/webdriver/remote/webelement.py:426: UserWarning: find_elements_by_* commands are deprecated. Please use find_elements() instead
print(player_data)
[{'occupation': 'Goalkeepers', 'name': 'Ederson', 'age': '29', 'dob': '17.08.1993'}, {'occupation': 'Goalkeepers', 'name': 'Ortega Stefan', 'age': '30', 'dob': '06.11.1992'}, {'occupation': 'Defenders', 'name': 'Akanji Manuel', 'age': '27', 'dob': '19.07.1995'}, {'occupation': 'Defenders', 'name': 'Ake Nathan', 'age': '28', 'dob': '18.02.1995'}, {'occupation': 'Defenders', 'name': 'Cancelo Joao', 'age': '29', 'dob': '27.05.1994'}, {'occupation': 'Defenders', 'name': 'Dias Ruben', 'age': '26', 'dob': '14.05.1997'}, {'occupation': 'Defenders', 'name': 'Laporte Aymeric', 'age': '29', 'dob': '27.05.1994'}, {'occupation': 'Defenders', 'name': 'Lewis Rico', 'age': '18', 'dob': '21.11.2004'}, {'occupation': 'Defenders', 'name': 'Stones John', 'age': '29', 'dob': '28.05.1994'}, {'occupation': 'Defenders', 'name': 'Walker Kyle', 'age': '33', 'dob': '28.05.1990'}, {'occupation': 'Midfielders', 'name': 'De Bruyne Kevin', 'age': '32', 'dob': '28.06.1991'}, {'occupation': 'Midfielders', 'name': 'Foden Phil', 'age': '23', 'dob': '28.05.2000'}, {'occupation': 'Midfielders', 'name': 'Gomez Sergio', 'age': '22', 'dob': '04.09.2000'}, {'occupation': 'Midfielders', 'name': 'Grealish Jack', 'age': '27', 'dob': '10.09.1995'}, {'occupation': 'Midfielders', 'name': 'Palmer Cole', 'age': '21', 'dob': '06.05.2002'}, {'occupation': 'Midfielders', 'name': 'Perrone Maximo', 'age': '20', 'dob': '07.01.2003'}, {'occupation': 'Midfielders', 'name': 'Phillips Kalvin', 'age': '27', 'dob': '02.12.1995'}, {'occupation': 'Midfielders', 'name': 'Rodri', 'age': '27', 'dob': '22.06.1996'}, {'occupation': 'Midfielders', 'name': 'Silva Bernardo', 'age': '28', 'dob': '10.08.1994'}, {'occupation': 'Forwards', 'name': 'Alvarez Julian', 'age': '23', 'dob': '31.01.2000'}, {'occupation': 'Forwards', 'name': 'Haaland Erling', 'age': '22', 'dob': '21.07.2000'}, {'occupation': 'Forwards', 'name': 'Mahrez Riyad', 'age': '32', 'dob': '21.02.1991'}]
winning_players_info = pd.DataFrame(player_data)
Print the first 5 rows in the dataset
winning_players_info.head()
| occupation | name | age | dob | |
|---|---|---|---|---|
| 0 | Goalkeepers | Ederson | 29 | 17.08.1993 |
| 1 | Goalkeepers | Ortega Stefan | 30 | 06.11.1992 |
| 2 | Defenders | Akanji Manuel | 27 | 19.07.1995 |
| 3 | Defenders | Ake Nathan | 28 | 18.02.1995 |
| 4 | Defenders | Cancelo Joao | 29 | 27.05.1994 |
Print the number of rows and columns in the dataset
winning_players_info.shape
(22, 4)
Print the column names
winning_players_info.columns
Index(['occupation', 'name', 'age', 'dob'], dtype='object')
Check the datatype of all columns
print(winning_players_info.dtypes)
occupation object name object age object dob object dtype: object
Check if there are any null values in the column
winning_players_info.isnull().sum()
occupation 0 name 0 age 0 dob 0 dtype: int64
Find the number of unique names in the dataset
unique_names = winning_players_info['name'].unique()
len(unique_names)
22
Convert the columns to the appropriate data types
winning_players_info['age'] = winning_players_info['age'].astype(int)
winning_players_info['dob'] = pd.to_datetime(winning_players_info['dob'])
print(winning_players_info.dtypes)
occupation object name object age int64 dob datetime64[ns] dtype: object
winning_players_info.to_csv('epl_2021-2022_winner_man_city.csv', index=False)
winning_players_info.to_excel('epl_2021-2022_winner_man_city.xlsx', index=False, engine='openpyxl')